12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
|
declare module 'netlify-cms-lib-auth' {
|
||
|
class NetlifyAuthenticator {
|
||
|
constructor(config = {});
|
||
|
|
||
|
refresh: (args: {
|
||
|
provider: string;
|
||
|
refresh_token: string;
|
||
|
}) => Promise<{ token: string; refresh_token: string }>;
|
||
|
}
|
||
|
export default NetlifyAuthenticator;
|
||
|
}
|