Export to Markdown (#20661)

* Give saveAsExcel its own config options

* Wired up correctly

* Merge conflicts

* PR comments 1

Co-authored-by: Ben Russell <russellben@microsoft.com>
This commit is contained in:
Benjamin Russell
2022-10-13 18:08:21 -05:00
committed by GitHub
parent bee1c6be44
commit 38eb0c8429
13 changed files with 216 additions and 14 deletions

View File

@@ -15,6 +15,11 @@ export interface IQueryEditorConfiguration {
readonly saveAsExcel: {
readonly includeHeaders: boolean,
},
readonly saveAsMarkdown: {
readonly encoding: string,
readonly includeHeaders: boolean,
readonly lineSeparator: string,
}
readonly saveAsXml: {
readonly formatted: boolean,
readonly encoding: string