chore: include pre-built dist for github install
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
export type OAuthCallbackResult = {
|
||||
code: string;
|
||||
state: string;
|
||||
};
|
||||
export type CallbackServer = {
|
||||
port: number;
|
||||
waitForCallback: () => Promise<OAuthCallbackResult>;
|
||||
close: () => void;
|
||||
};
|
||||
export declare function findAvailablePort(startPort?: number): Promise<number>;
|
||||
export declare function startCallbackServer(startPort?: number): Promise<CallbackServer>;
|
||||
Reference in New Issue
Block a user