import type { ReactOptimisticKey } from './ReactSymbols';
export type { ReactOptimisticKey };
export type ReactKey = null | string | ReactOptimisticKey;
export type ReactNode =
| React$Element<any>
| ReactPortal
| ReactText
| ReactFragment
| ReactProvider<any>
| ReactConsumer<any>;
export type ReactEmpty = null | void | boolean;
export type ReactFragment = ReactEmpty | Iterable<React$Node>;
export type ReactNodeList = ReactEmpty | React$Node;
export type ReactText = string | number;
export type ReactProvider<T> = {
$$typeof: symbol | number;
type: ReactContext<T>;
key: ReactKey;
ref: null;
props: {
value: T;
children?: ReactNodeList;
};
};
export type ReactConsumerType<T> = {
$$typeof: symbol | number;
_context: ReactContext<T>;
};
export type ReactConsumer<T> = {
$$typeof: symbol | number;
type: ReactConsumerType<T>;
key: ReactKey;
ref: null;
props: {
children: (value: T) => ReactNodeList;
};
};
export type ReactContext<T> = {
$$typeof: symbol | number;
Consumer: ReactConsumerType<T>;
Provider: ReactContext<T>;
_currentValue: T;
_currentValue2: T;
_threadCount: number;
_currentRenderer?: Object | null;
_currentRenderer2?: Object | null;
displayName?: string;
};
export type ReactPortal = {
$$typeof: symbol | number;
key: ReactKey;
containerInfo: any;
children: ReactNodeList;
implementation: any;
};
export type RefObject = {
current: any;
};
export type ReactScope = {
$$typeof: symbol | number;
};
export type ReactScopeQuery = (
type: string,
props: { [string]: mixed },
instance: mixed,
) => boolean;
export type ReactScopeInstance = {
DO_NOT_USE_queryAllNodes(ReactScopeQuery): null | Array<Object>;
DO_NOT_USE_queryFirstNode(ReactScopeQuery): null | Object;
containsNode(Object): boolean;
getChildContextValues: <T>(context: ReactContext<T>) => Array<T>;
};
export interface Wakeable {
then(onFulfill: () => mixed, onReject: () => mixed): void | Wakeable;
}
interface ThenableImpl<T> {
then(
onFulfill: (value: T) => mixed,
onReject: (error: mixed) => mixed,
): void | Wakeable;
displayName?: string;
}
interface UntrackedThenable<T> extends ThenableImpl<T> {
status?: void;
_debugInfo?: null | ReactDebugInfo;
}
export interface PendingThenable<T> extends ThenableImpl<T> {
status: 'pending';
_debugInfo?: null | ReactDebugInfo;
}
export interface FulfilledThenable<T> extends ThenableImpl<T> {
status: 'fulfilled';
value: T;
_debugInfo?: null | ReactDebugInfo;
}
export interface RejectedThenable<T> extends ThenableImpl<T> {
status: 'rejected';
reason: mixed;
_debugInfo?: null | ReactDebugInfo;
}
export type Thenable<T> =
| UntrackedThenable<T>
| PendingThenable<T>
| FulfilledThenable<T>
| RejectedThenable<T>;
export type StartTransitionOptions = {
name?: string;
};
export type Usable<T> = Thenable<T> | ReactContext<T>;
export type ReactCustomFormAction = {
name?: string;
action?: string;
encType?: string;
method?: string;
target?: string;
data?: null | FormData;
};
export type ReactFormState<S, ReferenceId> = [
S ,
string ,
ReferenceId ,
number ,
];
export type GestureProvider = any;
export type GestureOptions = {
rangeStart?: number;
rangeEnd?: number;
};
export type Awaited<T> = T extends null | void
? T
: T extends Object
? T extends { then(onfulfilled: infer F): any }
? F extends (value: infer V) => any
? Awaited<V>
: empty
: T
: T;
export type ReactCallSite = [
string,
string,
number,
number,
number,
number,
boolean,
];
export type ReactStackTrace = Array<ReactCallSite>;
export type ReactFunctionLocation = [
string,
string,
number,
number,
];
export type ReactComponentInfo = {
name: string;
env?: string;
key?: ReactKey;
owner?: null | ReactComponentInfo;
stack?: null | ReactStackTrace;
props?: null | { [name: string]: mixed };
debugStack?: null | Error;
debugTask?: null | ConsoleTask;
debugLocation?: null | Error;
};
export type ReactEnvironmentInfo = {
env: string;
};
export type ReactErrorInfoProd = {
digest: string;
};
export type ReactErrorInfoDev = {
digest?: string;
name: string;
message: string;
stack: ReactStackTrace;
env: string;
owner?: null | string;
};
export type ReactErrorInfo = ReactErrorInfoProd | ReactErrorInfoDev;
export type ReactIOInfo = {
name: string;
start: number;
end: number;
byteSize?: number;
value?: null | Promise<mixed>;
env?: string;
owner?: null | ReactComponentInfo;
stack?: null | ReactStackTrace;
debugStack?: null | Error;
debugTask?: null | ConsoleTask;
};
export type ReactAsyncInfo = {
awaited: ReactIOInfo;
env?: string;
owner?: null | ReactComponentInfo;
stack?: null | ReactStackTrace;
debugStack?: null | Error;
debugTask?: null | ConsoleTask;
};
export type ReactTimeInfo = {
time: number;
};
export type ReactDebugInfoEntry =
| ReactComponentInfo
| ReactEnvironmentInfo
| ReactAsyncInfo
| ReactTimeInfo;
export type ReactDebugInfo = Array<ReactDebugInfoEntry>;
export type ViewTransitionInstance = any;
export type ViewTransitionClassPerType = {
[transitionType: 'default' | string]: 'none' | 'auto' | string;
};
export type ViewTransitionClass =
| 'none'
| 'auto'
| string
| ViewTransitionClassPerType;
export type ViewTransitionProps = {
name?: string;
children?: ReactNodeList;
default?: ViewTransitionClass;
enter?: ViewTransitionClass;
exit?: ViewTransitionClass;
share?: ViewTransitionClass;
update?: ViewTransitionClass;
onEnter?: (instance: ViewTransitionInstance, types: Array<string>) => void;
onExit?: (instance: ViewTransitionInstance, types: Array<string>) => void;
onShare?: (instance: ViewTransitionInstance, types: Array<string>) => void;
onUpdate?: (instance: ViewTransitionInstance, types: Array<string>) => void;
};
export type ActivityProps = {
mode?: 'hidden' | 'visible' | null | void;
children?: ReactNodeList;
name?: string;
};
export type SuspenseProps = {
children?: ReactNodeList;
fallback?: ReactNodeList;
suspenseCallback?: (set: Set<Wakeable> | null) => mixed;
unstable_avoidThisFallback?: boolean;
defer?: boolean;
name?: string;
};
export type SuspenseListRevealOrder =
| 'forwards'
| 'backwards'
| 'unstable_legacy-backwards'
| 'together'
| 'independent'
| void;
export type SuspenseListTailMode = 'visible' | 'collapsed' | 'hidden' | void;
type SuspenseListRow = Exclude<
ReactNodeList,
Iterable<React$Node> | AsyncIterable<React$Node>
>;
type DirectionalSuspenseListProps = {
children?: Iterable<SuspenseListRow> | AsyncIterable<SuspenseListRow>;
revealOrder: 'forwards' | 'backwards' | 'unstable_legacy-backwards';
tail?: SuspenseListTailMode;
};
type NonDirectionalSuspenseListProps = {
children?: ReactNodeList;
revealOrder?: 'independent' | 'together' | void;
tail?: void;
};
export type SuspenseListProps =
| DirectionalSuspenseListProps
| NonDirectionalSuspenseListProps;
export type TracingMarkerProps = {
name: string;
children?: ReactNodeList;
};
export type CacheProps = {
children?: ReactNodeList;
};
export type ProfilerPhase = 'mount' | 'update' | 'nested-update';
export type ProfilerProps = {
id?: string;
onRender?: (
id: void | string,
phase: ProfilerPhase,
actualDuration: number,
baseDuration: number,
startTime: number,
commitTime: number,
) => void;
onCommit?: (
id: void | string,
phase: ProfilerPhase,
effectDuration: number,
commitTime: number,
) => void;
children?: ReactNodeList;
};