mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 09:35:37 -05:00
Adding execution plan component to model view. (#23620)
This commit is contained in:
19
src/sql/azdata.proposed.d.ts
vendored
19
src/sql/azdata.proposed.d.ts
vendored
@@ -703,6 +703,25 @@ declare module 'azdata' {
|
||||
headerFilter?: boolean,
|
||||
}
|
||||
|
||||
export type ExecutionPlanData = executionPlan.ExecutionPlanGraphInfo | executionPlan.ExecutionPlanGraph[];
|
||||
|
||||
export interface ExecutionPlanComponentProperties extends ComponentProperties {
|
||||
/**
|
||||
* Provide the execution plan file to be displayed. In case of execution plan graph info, the file type will determine the provider to be used to generate execution plan graphs
|
||||
*/
|
||||
data?: ExecutionPlanData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines the executionPlan component
|
||||
*/
|
||||
export interface ExecutionPlanComponent extends Component, ExecutionPlanComponentProperties {
|
||||
}
|
||||
|
||||
export interface ModelBuilder {
|
||||
executionPlan(): ComponentBuilder<ExecutionPlanComponent, ExecutionPlanComponentProperties>;
|
||||
}
|
||||
|
||||
export interface ListViewOption {
|
||||
/**
|
||||
* The optional accessibility label for the column. Default is the label for the list view option.
|
||||
|
||||
Reference in New Issue
Block a user