mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
add ability for md + text reports (#18667)
* add ability for md + text reports * change report type * re add types for ads * match fields and add enum for mimetype * rename preview report * update type * rename generate report type * fix comment
This commit is contained in:
13
src/sql/azdata.proposed.d.ts
vendored
13
src/sql/azdata.proposed.d.ts
vendored
@@ -1099,7 +1099,7 @@ declare module 'azdata' {
|
||||
* Generate preview report describing the changes to be made.
|
||||
* @param table the table information
|
||||
*/
|
||||
generatePreviewReport(table: TableInfo): Thenable<string>;
|
||||
generatePreviewReport(table: TableInfo): Thenable<GeneratePreviewReportResult>;
|
||||
|
||||
/**
|
||||
* Notify the provider that the table designer has been closed.
|
||||
@@ -1515,6 +1515,17 @@ declare module 'azdata' {
|
||||
*/
|
||||
view: TableDesignerView;
|
||||
}
|
||||
|
||||
export interface GeneratePreviewReportResult {
|
||||
/**
|
||||
* Report generated for generate preview
|
||||
*/
|
||||
report: string;
|
||||
/**
|
||||
* Format (mimeType) of the report
|
||||
*/
|
||||
mimeType: string;
|
||||
}
|
||||
}
|
||||
|
||||
export interface ExecutionPlanGraph {
|
||||
|
||||
Reference in New Issue
Block a user