tdl-shared
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -16,1 +16,13 @@ | ||
} | ||
export interface IAsyncTDLibJSON { | ||
create(): Promise<TDLibClient>; | ||
destroy(client: TDLibClient): Promise<void>; | ||
execute(client: TDLibClient, query: Object): Promise<Object | null>; | ||
receive(client: TDLibClient, timeout: number): Promise<Object | null>; | ||
send(client: TDLibClient, query: Object): Promise<void>; | ||
setLogFilePath(path: string): Promise<number>; | ||
setLogMaxFileSize(maxFileSize: number | string): Promise<void>; | ||
setLogVerbosityLevel(verbosity: number): Promise<void>; | ||
setLogFatalErrorCallback(fn: (errorMessage: string) => void): Promise<void>; | ||
} |
{ | ||
"name": "tdl-shared", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4045
27