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 const AzureBackend: Implementation;
export class BitbucketBackend extends Implementation {} export const BitbucketBackend: Implementation;
export class GitGatewayBackend extends Implementation {} export const GitGatewayBackend: Implementation;
export class GitHubBackend extends Implementation {} export const GitHubBackend: Implementation;
export class GitLabBackend extends Implementation {} export const GitLabBackend: Implementation;
export class ProxyBackend extends Implementation {} export const ProxyBackend: Implementation;
export class TestBackend extends Implementation {} export const TestBackend: Implementation;
// Widgets // Widgets
export const BooleanWidget: { export const BooleanWidget: {