@coko/server
Version:
Reusable server for use by Coko's projects
5 lines • 384 B
TypeScript
declare const getAuthTokens: (userId: string, providerLabel: string) => Promise<string | boolean>;
declare const renewAuthTokens: (userId: string, providerLabel: string) => Promise<string | boolean>;
declare const getAccessToken: (serviceName: string, renew?: boolean) => Promise<string>;
export { getAuthTokens, getAccessToken, renewAuthTokens };
//# sourceMappingURL=tokens.d.ts.map