Fix backend types

This commit is contained in:
Daniel Lautzenheiser 2022-09-29 13:48:44 -04:00
parent 530c14f245
commit 213e51c52d

View File

@ -827,13 +827,13 @@ declare module 'netlify-cms-core' {
}>;
}
export class AzureBackend extends Implementation {}
export class BitbucketBackend extends Implementation {}
export class GitGatewayBackend extends Implementation {}
export class GitHubBackend extends Implementation {}
export class GitLabBackend extends Implementation {}
export class ProxyBackend extends Implementation {}
export class TestBackend extends Implementation {}
export const AzureBackend: Implementation;
export const BitbucketBackend: Implementation;
export const GitGatewayBackend: Implementation;
export const GitHubBackend: Implementation;
export const GitLabBackend: Implementation;
export const ProxyBackend: Implementation;
export const TestBackend: Implementation;
// Widgets
export const BooleanWidget: {