mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* use different eslint config for es6 and es5 * remove confusing eslint/baseConfig.js & add more eslint setting for es5, es6 * more clear way to run eslint on es5 & es6 file * seperate ESNext, ES6, ES6 path, and use different lint config * rename eslint config file & update eslint rules * Undo yarn.lock changes * Rename a file * Remove unnecessary exceptions * Refactor a little bit * Refactor and tweak the logic * Minor issues
122 lines
3.2 KiB
JavaScript
122 lines
3.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
/* eslint-disable */
|
|
|
|
declare module 'deepDiffer' {
|
|
declare function exports(one: any, two: any): boolean;
|
|
}
|
|
declare module 'deepFreezeAndThrowOnMutationInDev' {
|
|
declare function exports<T>(obj: T): T;
|
|
}
|
|
declare module 'flattenStyle' {
|
|
}
|
|
declare module 'InitializeCore' {
|
|
}
|
|
declare module 'RCTEventEmitter' {
|
|
declare function register(mixed): void;
|
|
}
|
|
declare module 'TextInputState' {
|
|
declare function blurTextInput(object: any): void;
|
|
declare function focusTextInput(object: any): void;
|
|
}
|
|
declare module 'ExceptionsManager' {
|
|
declare function handleException(error: Error, isFatal: boolean): void;
|
|
}
|
|
declare module 'Platform' {
|
|
declare var OS: string;
|
|
}
|
|
declare module 'UIManager' {
|
|
declare var customBubblingEventTypes: Object;
|
|
declare var customDirectEventTypes: Object;
|
|
declare function createView(
|
|
reactTag: number,
|
|
viewName: string,
|
|
rootTag: number,
|
|
props: ?Object,
|
|
): void;
|
|
declare function manageChildren(
|
|
containerTag: number,
|
|
moveFromIndices: Array<number>,
|
|
moveToIndices: Array<number>,
|
|
addChildReactTags: Array<number>,
|
|
addAtIndices: Array<number>,
|
|
removeAtIndices: Array<number>,
|
|
): void;
|
|
declare function measure(hostComponent: mixed, callback: Function): void;
|
|
declare function measureInWindow(
|
|
nativeTag: ?number,
|
|
callback: Function,
|
|
): void;
|
|
declare function measureLayout(
|
|
nativeTag: mixed,
|
|
nativeNode: number,
|
|
onFail: Function,
|
|
onSuccess: Function,
|
|
): void;
|
|
declare function removeRootView(containerTag: number): void;
|
|
declare function removeSubviewsFromContainerWithID(containerId: number): void;
|
|
declare function replaceExistingNonRootView(): void;
|
|
declare function setChildren(
|
|
containerTag: number,
|
|
reactTags: Array<number>,
|
|
): void;
|
|
declare function updateView(
|
|
reactTag: number,
|
|
viewName: string,
|
|
props: ?Object,
|
|
): void;
|
|
declare function __takeSnapshot(
|
|
view?: 'window' | Element<any> | number,
|
|
options?: {
|
|
width?: number,
|
|
height?: number,
|
|
format?: 'png' | 'jpeg',
|
|
quality?: number,
|
|
},
|
|
): Promise<any>;
|
|
}
|
|
declare module 'View' {
|
|
declare var exports: typeof React$Component;
|
|
}
|
|
|
|
declare module 'RTManager' {
|
|
declare function createNode(
|
|
tag: number,
|
|
classType: string,
|
|
props: ?Object,
|
|
): void;
|
|
|
|
declare function beginUpdates(): void;
|
|
|
|
declare function appendChildToContext(
|
|
contextTag: number,
|
|
childTag: number,
|
|
): void;
|
|
declare function appendChild(parentTag: number, childTag: number): void;
|
|
declare function prependChild(childTag: number, beforeTag: number): void;
|
|
declare function deleteChild(childTag: number): void;
|
|
declare function updateNode(tag: number, props: ?Object): void;
|
|
|
|
declare function completeUpdates(): void;
|
|
}
|
|
|
|
declare module 'BatchedBridge' {
|
|
declare function registerCallableModule(name: string, module: Object): void;
|
|
}
|
|
|
|
declare module 'CSComponent' {
|
|
declare type Element = any;
|
|
declare type Options<Instance> = any;
|
|
}
|
|
|
|
declare module 'CSStatefulComponent' {
|
|
declare function CSStatefulComponent(spec: any): any;
|
|
}
|