Skip to content

Commit b624a8f

Browse files
authored
fix(typings): Missing declaration for OFF as LogLevel (#912)
1 parent 8a83e21 commit b624a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ declare module 'snowflake-sdk' {
186186
export type StatementCallback = (err: SnowflakeError | undefined, stmt: RowStatement | FileAndStageBindStatement, rows?: Array<any> | undefined) => void;
187187
export type ConnectionCallback = (err: SnowflakeError | undefined, conn: Connection) => void;
188188
export type RowMode = "object" | "array" | "object_with_renamed_duplicated_columns";
189-
export type LogLevel = "ERROR" | "WARN" | "INFO" | "DEBUG" | "TRACE";
189+
export type LogLevel = "ERROR" | "WARN" | "INFO" | "DEBUG" | "TRACE" | "OFF";
190190
export type DataType = "String" | "Boolean" | "Number" | "Date" | "JSON" | "Buffer";
191191
export type QueryStatus = "RUNNING" | "ABORTING" | "SUCCESS" | "FAILED_WITH_ERROR" | "ABORTED" | "QUEUED" | "FAILED_WITH_INCIDENT" | "DISCONNECTED" | "RESUMING_WAREHOUSE" | "QUEUED_REPARING_WAREHOUSE" | "RESTARTED" | "BLOCKED" | "NO_DATA";
192192
export type StatementStatus = "fetching" | "complete";

0 commit comments

Comments
 (0)