fix: .d.ts definitions for core and app (#2929)

* fix: .d.ts definitions for core and app

* fix: updated ts types to match the schema
This commit is contained in:
Yuri Drabik
2019-12-02 12:04:07 +01:00
committed by Erez Rokah
parent c31efe190a
commit 7391061b3b
4 changed files with 246 additions and 1 deletions

7
packages/netlify-cms-app/index.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
declare module 'netlify-cms-app' {
import { CMS } from 'netlify-cms-core';
export const NetlifyCmsApp: CMS;
export default NetlifyCmsApp;
}