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