Enable custom delimiters when saving as CSV (#1928)

* Support custom delimiters for csv

* Run tsfmt
This commit is contained in:
Matt Irvine
2018-07-13 18:12:57 -07:00
committed by GitHub
parent fd49c081c2
commit 30b66934cd
3 changed files with 14 additions and 4 deletions

8
src/sql/sqlops.d.ts vendored
View File

@@ -840,6 +840,7 @@ declare module 'sqlops' {
columnStartIndex: number;
columnEndIndex: number;
includeHeaders?: boolean;
delimiter?: string;
}
export interface SaveResultRequestResult {
@@ -1187,7 +1188,7 @@ declare module 'sqlops' {
}
export enum FrequencyTypes {
Unknown ,
Unknown,
OneTime = 1 << 1,
Daily = 1 << 2,
Weekly = 1 << 3,
@@ -1395,15 +1396,14 @@ declare module 'sqlops' {
job: AgentJobInfo;
}
export interface AgentJobCategory
{
export interface AgentJobCategory {
id: string;
name: string;
}
export interface AgentJobDefaultsResult extends ResultStatus {
owner: string;
categories: AgentJobCategory[];
categories: AgentJobCategory[];
}
export interface CreateAgentJobStepResult extends ResultStatus {