UNPKG

tinacms

Version:

> The Fastest Way to Edit Next.js Content

11 lines (9 loc) 278 B
/** */ export declare const AUTH_TOKEN_KEY = "tinacms-auth"; export declare type TokenObject = { id_token: string; access_token?: string; refresh_token?: string; }; export declare const authenticate: (clientId: string, frontendUrl: string) => Promise<TokenObject>;