-
Notifications
You must be signed in to change notification settings - Fork 592
/
global.d.ts
33 lines (27 loc) · 960 Bytes
/
global.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/// <reference types="cypress"/>
declare module 'enzyme-adapter-react-16';
declare module 'es6-promise-polyfill' {
export = { Promise };
}
declare module 'conventional-changelog' {
import { Readable } from 'stream';
function conventionalChangelog(...args: any[]): Readable;
export = conventionalChangelog;
}
declare module 'conventional-changelog-conventionalcommits';
declare module 'postcss-discard-comments';
declare module '@alifd/doc-parser';
declare module '@alifd/api-extractor';
declare module 'markdown-it';
declare module 'markdown-it-anchor';
declare module 'remark';
declare module '@alifd/adaptor-helper';
declare module 'solarlunar';
declare module 'lodash.clonedeep' {
export { cloneDeep as default } from 'lodash';
}
declare const mountNode: HTMLDivElement;
declare module 'react-lifecycles-compat' {
import { ComponentType } from 'react';
export function polyfill<C extends ComponentType>(Component: C): C;
}