mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 01:45:05 +08:00
ab0e07e25d
Some checks are pending
Publish Any Commit / build (push) Waiting to run
✅ test v6 / lint (push) Waiting to run
✅ test v6 / test-react-legacy (18, 1/2) (push) Waiting to run
✅ test v6 / test-react-legacy (18, 2/2) (push) Waiting to run
✅ test v6 / test-node (push) Waiting to run
✅ test v6 / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test v6 / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test v6 / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test v6 / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test v6 / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test v6 / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test v6 / test-coverage (push) Blocked by required conditions
✅ test v6 / build (push) Waiting to run
✅ test v6 / test lib/es module (es, 1/2) (push) Waiting to run
✅ test v6 / test lib/es module (es, 2/2) (push) Waiting to run
✅ test v6 / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test v6 / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run
* refactor: use @rc-component * chore: adjust compile * test: fix logic * chore: back of reset --------- Co-authored-by: 二货机器人 <smith3816@gmail.com>
30 lines
748 B
TypeScript
30 lines
748 B
TypeScript
// https://github.com/facebook/create-react-app/blob/f09d3d3a52c1b938cecc977c2bbc0942ea0a7e70/packages/react-scripts/lib/react-app.d.ts#L42-L49
|
|
declare module '*.svg' {
|
|
import * as React from 'react';
|
|
|
|
export const ReactComponent: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
|
|
const src: string;
|
|
export default src;
|
|
}
|
|
|
|
declare module 'jsonml-to-react-element';
|
|
|
|
declare module 'jsonml.js/*';
|
|
|
|
declare module '*.json' {
|
|
const value: any;
|
|
export const version: string;
|
|
export default value;
|
|
}
|
|
|
|
declare module '@npmcli/run-script' {
|
|
export default function runScript(options: {
|
|
[key: string]: string | string[] | boolean | NodeJS.ProcessEnv;
|
|
}): Promise<void>;
|
|
}
|
|
|
|
declare module '@microflash/rehype-figure';
|
|
|
|
declare module 'dekko';
|