initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
4
github/codeql-action-v2/node_modules/twirp-ts/build/twirp/interceptors.d.ts
generated
vendored
Normal file
4
github/codeql-action-v2/node_modules/twirp-ts/build/twirp/interceptors.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import { TwirpContext } from "./context";
|
||||
export declare type Next<Context extends TwirpContext = TwirpContext, Request = any, Response = any> = (ctx: Context, typedRequest: Request) => Promise<Response>;
|
||||
export declare type Interceptor<Context extends TwirpContext, Request, Response> = (ctx: Context, typedRequest: Request, next: Next<Context, Request, Response>) => Promise<Response>;
|
||||
export declare function chainInterceptors<Context extends TwirpContext, Request, Response>(...interceptors: Interceptor<Context, Request, Response>[]): Interceptor<Context, Request, Response> | undefined;
|
||||
Loading…
Add table
Add a link
Reference in a new issue