*Update dist

This commit is contained in:
Derrick Hammer 2022-08-28 22:11:57 -04:00
parent 6a91a5f4fd
commit 1a77bb0469
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 26 additions and 21 deletions

9
dist/index.d.ts vendored
View File

@ -12,7 +12,10 @@ export interface RPCResponse {
} }
export interface RPCMethod { export interface RPCMethod {
cacheable: boolean; cacheable: boolean;
handler: (request: RPCRequest, sendStream: (stream: AsyncIterable<Uint8Array>) => void) => Promise<RPCResponse | null>; handler: (
request: RPCRequest,
sendStream: (stream: AsyncIterable<Uint8Array>) => void
) => Promise<RPCResponse | null>;
} }
export declare const RPC_REQUEST_SCHEMA: JSONSchemaType<RPCRequest>; export declare const RPC_REQUEST_SCHEMA: JSONSchemaType<RPCRequest>;
export interface StreamFileResponse { export interface StreamFileResponse {
@ -32,5 +35,7 @@ export interface Plugin {
exports?: any; exports?: any;
default?: Plugin; default?: Plugin;
} }
export declare type RPCStreamHandler = (stream: AsyncIterable<Uint8Array>) => Promise<RPCResponse>; export declare type RPCStreamHandler = (
stream: AsyncIterable<Uint8Array>
) => Promise<RPCResponse>;
//# sourceMappingURL=index.d.ts.map //# sourceMappingURL=index.d.ts.map