From 213e51c52dafdf31354c3c545347615a17baa5b5 Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Thu, 29 Sep 2022 13:48:44 -0400 Subject: [PATCH] Fix backend types --- packages/netlify-cms-core/index.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/netlify-cms-core/index.d.ts b/packages/netlify-cms-core/index.d.ts index 7e5ac0f6..8d999873 100644 --- a/packages/netlify-cms-core/index.d.ts +++ b/packages/netlify-cms-core/index.d.ts @@ -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: {