fix(types): add missing List import to index.d.ts (#3843)

This commit is contained in:
Patrick Menlove 2020-06-02 09:04:06 +01:00 committed by GitHub
parent e16782409a
commit 43ef28b5dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
declare module 'netlify-cms-core' {
import React, { ComponentType } from 'react';
import { Map } from 'immutable';
import { List, Map } from 'immutable';
export type CmsBackendType = 'git-gateway' | 'github' | 'gitlab' | 'bitbucket' | 'test-repo';