chore: Update sqllab types (#11887)

This commit is contained in:
Hugh A. Miles II 2020-12-02 10:11:26 -08:00 committed by GitHub
parent 1842c56209
commit 0c10f9ee3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -41,8 +41,10 @@ export type Query = {
columns: Column[];
data: Record<string, unknown>[];
expanded_columns: Column[];
selected_columns: Column[];
};
resultsKey: string | null;
schema: string;
sql: string;
sqlEditorId: string;
state:
@ -53,7 +55,9 @@ export type Query = {
| 'scheduled'
| 'success'
| 'timed_out';
tab: string | null;
tempSchema: string | null;
tempTable: string;
trackingUrl: string | null;
templateParams: any;
};