mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 14:13:37 +08:00
chore: integrate typings dir
This commit is contained in:
parent
14fb2c78ba
commit
caf218ce4b
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,6 +26,5 @@ dist
|
|||||||
/lib
|
/lib
|
||||||
elasticsearch-*
|
elasticsearch-*
|
||||||
config/base.yaml
|
config/base.yaml
|
||||||
typings
|
|
||||||
components/**/*.js
|
components/**/*.js
|
||||||
components/**/*.jsx
|
components/**/*.jsx
|
||||||
|
@ -141,7 +141,6 @@
|
|||||||
"eslint-fix": "eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md",
|
"eslint-fix": "eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md",
|
||||||
"test": "npm run lint && npm run dist",
|
"test": "npm run lint && npm run dist",
|
||||||
"jest": "jest",
|
"jest": "jest",
|
||||||
"postinstall": "typings install",
|
|
||||||
"pre-publish": "node ./scripts/prepub",
|
"pre-publish": "node ./scripts/prepub",
|
||||||
"prepublish": "antd-tools run guard",
|
"prepublish": "antd-tools run guard",
|
||||||
"pub": "antd-tools run update-self && antd-tools run pub",
|
"pub": "antd-tools run update-self && antd-tools run pub",
|
||||||
|
70
typings/globals/react-dom/index.d.ts
vendored
Normal file
70
typings/globals/react-dom/index.d.ts
vendored
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
// Generated by typings
|
||||||
|
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/b9642fb8ac07f7164dc643ddd1fa99b58ae9be8b/react/react-dom.d.ts
|
||||||
|
declare namespace __React {
|
||||||
|
namespace __DOM {
|
||||||
|
function findDOMNode<E extends Element>(instance: ReactInstance): E;
|
||||||
|
function findDOMNode(instance: ReactInstance): Element;
|
||||||
|
|
||||||
|
function render<P extends DOMAttributes, T extends Element>(
|
||||||
|
element: DOMElement<P, T>,
|
||||||
|
container: Element,
|
||||||
|
callback?: (element: T) => any): T;
|
||||||
|
function render<P>(
|
||||||
|
element: SFCElement<P>,
|
||||||
|
container: Element,
|
||||||
|
callback?: () => any): void;
|
||||||
|
function render<P, T extends Component<P, ComponentState>>(
|
||||||
|
element: CElement<P, T>,
|
||||||
|
container: Element,
|
||||||
|
callback?: (component: T) => any): T;
|
||||||
|
function render<P>(
|
||||||
|
element: ReactElement<P>,
|
||||||
|
container: Element,
|
||||||
|
callback?: (component?: Component<P, ComponentState> | Element) => any): Component<P, ComponentState> | Element | void;
|
||||||
|
|
||||||
|
function unmountComponentAtNode(container: Element): boolean;
|
||||||
|
|
||||||
|
var version: string;
|
||||||
|
|
||||||
|
function unstable_batchedUpdates<A, B>(callback: (a: A, b: B) => any, a: A, b: B): void;
|
||||||
|
function unstable_batchedUpdates<A>(callback: (a: A) => any, a: A): void;
|
||||||
|
function unstable_batchedUpdates(callback: () => any): void;
|
||||||
|
|
||||||
|
function unstable_renderSubtreeIntoContainer<P extends DOMAttributes, T extends Element>(
|
||||||
|
parentComponent: Component<any, any>,
|
||||||
|
element: DOMElement<P, T>,
|
||||||
|
container: Element,
|
||||||
|
callback?: (element: T) => any): T;
|
||||||
|
function unstable_renderSubtreeIntoContainer<P, T extends Component<P, ComponentState>>(
|
||||||
|
parentComponent: Component<any, any>,
|
||||||
|
element: CElement<P, T>,
|
||||||
|
container: Element,
|
||||||
|
callback?: (component: T) => any): T;
|
||||||
|
function render<P>(
|
||||||
|
parentComponent: Component<any, any>,
|
||||||
|
element: SFCElement<P>,
|
||||||
|
container: Element,
|
||||||
|
callback?: () => any): void;
|
||||||
|
function unstable_renderSubtreeIntoContainer<P>(
|
||||||
|
parentComponent: Component<any, any>,
|
||||||
|
element: ReactElement<P>,
|
||||||
|
container: Element,
|
||||||
|
callback?: (component?: Component<P, ComponentState> | Element) => any): Component<P, ComponentState> | Element | void;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace __DOMServer {
|
||||||
|
function renderToString(element: ReactElement<any>): string;
|
||||||
|
function renderToStaticMarkup(element: ReactElement<any>): string;
|
||||||
|
var version: string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "react-dom" {
|
||||||
|
import DOM = __React.__DOM;
|
||||||
|
export = DOM;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "react-dom/server" {
|
||||||
|
import DOMServer = __React.__DOMServer;
|
||||||
|
export = DOMServer;
|
||||||
|
}
|
8
typings/globals/react-dom/typings.json
Normal file
8
typings/globals/react-dom/typings.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"resolution": "main",
|
||||||
|
"tree": {
|
||||||
|
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/b9642fb8ac07f7164dc643ddd1fa99b58ae9be8b/react/react-dom.d.ts",
|
||||||
|
"raw": "registry:dt/react-dom#0.14.0+20160412154040",
|
||||||
|
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/b9642fb8ac07f7164dc643ddd1fa99b58ae9be8b/react/react-dom.d.ts"
|
||||||
|
}
|
||||||
|
}
|
2514
typings/globals/react/index.d.ts
vendored
Normal file
2514
typings/globals/react/index.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
8
typings/globals/react/typings.json
Normal file
8
typings/globals/react/typings.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"resolution": "main",
|
||||||
|
"tree": {
|
||||||
|
"src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/03cd162da057a9cbf653119982e12233ae2b90a6/react/react.d.ts",
|
||||||
|
"raw": "registry:dt/react#0.14.0+20160720060442",
|
||||||
|
"typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/03cd162da057a9cbf653119982e12233ae2b90a6/react/react.d.ts"
|
||||||
|
}
|
||||||
|
}
|
2
typings/index.d.ts
vendored
Normal file
2
typings/index.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/// <reference path="globals/react-dom/index.d.ts" />
|
||||||
|
/// <reference path="globals/react/index.d.ts" />
|
Loading…
Reference in New Issue
Block a user