first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
175
node_modules/preact/compat/src/index.d.ts
generated
vendored
Normal file
175
node_modules/preact/compat/src/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,175 @@
|
|||
import * as _hooks from '../../hooks';
|
||||
import * as preact from '../../src';
|
||||
import { JSXInternal } from '../../src/jsx';
|
||||
import * as _Suspense from './suspense';
|
||||
import * as _SuspenseList from './suspense-list';
|
||||
|
||||
// export default React;
|
||||
export = React;
|
||||
export as namespace React;
|
||||
declare namespace React {
|
||||
// Export JSX
|
||||
export import JSX = JSXInternal;
|
||||
|
||||
// Hooks
|
||||
export import CreateHandle = _hooks.CreateHandle;
|
||||
export import EffectCallback = _hooks.EffectCallback;
|
||||
export import Inputs = _hooks.Inputs;
|
||||
export import PropRef = _hooks.PropRef;
|
||||
export import Reducer = _hooks.Reducer;
|
||||
export import Ref = _hooks.Ref;
|
||||
export import StateUpdater = _hooks.StateUpdater;
|
||||
export import useCallback = _hooks.useCallback;
|
||||
export import useContext = _hooks.useContext;
|
||||
export import useDebugValue = _hooks.useDebugValue;
|
||||
export import useEffect = _hooks.useEffect;
|
||||
export import useImperativeHandle = _hooks.useImperativeHandle;
|
||||
export import useId = _hooks.useId;
|
||||
export import useLayoutEffect = _hooks.useLayoutEffect;
|
||||
export import useMemo = _hooks.useMemo;
|
||||
export import useReducer = _hooks.useReducer;
|
||||
export import useRef = _hooks.useRef;
|
||||
export import useState = _hooks.useState;
|
||||
// React 18 hooks
|
||||
export import useInsertionEffect = _hooks.useLayoutEffect;
|
||||
export function useTransition(): [false, typeof startTransition];
|
||||
export function useDeferredValue<T = any>(val: T): T;
|
||||
export function useSyncExternalStore<T>(
|
||||
subscribe: (flush: () => void) => () => void,
|
||||
getSnapshot: () => T
|
||||
): T;
|
||||
|
||||
// Preact Defaults
|
||||
export import ContextType = preact.ContextType;
|
||||
export import RefObject = preact.RefObject;
|
||||
export import Component = preact.Component;
|
||||
export import FunctionComponent = preact.FunctionComponent;
|
||||
export import FC = preact.FunctionComponent;
|
||||
export import createContext = preact.createContext;
|
||||
export import createRef = preact.createRef;
|
||||
export import Fragment = preact.Fragment;
|
||||
export import createElement = preact.createElement;
|
||||
export import cloneElement = preact.cloneElement;
|
||||
export import ComponentProps = preact.ComponentProps;
|
||||
|
||||
// Suspense
|
||||
export import Suspense = _Suspense.Suspense;
|
||||
export import lazy = _Suspense.lazy;
|
||||
export import SuspenseList = _SuspenseList.SuspenseList;
|
||||
|
||||
// Compat
|
||||
export import StrictMode = preact.Fragment;
|
||||
export const version: string;
|
||||
export function startTransition(cb: () => void): void;
|
||||
|
||||
// HTML
|
||||
export import HTMLAttributes = JSXInternal.HTMLAttributes;
|
||||
export import DetailedHTMLProps = JSXInternal.DetailedHTMLProps;
|
||||
export import CSSProperties = JSXInternal.CSSProperties;
|
||||
|
||||
// Events
|
||||
export import TargetedEvent = JSXInternal.TargetedEvent;
|
||||
export import ChangeEvent = JSXInternal.TargetedEvent;
|
||||
export import ChangeEventHandler = JSXInternal.GenericEventHandler;
|
||||
|
||||
export function createPortal(
|
||||
vnode: preact.VNode,
|
||||
container: Element
|
||||
): preact.VNode<any>;
|
||||
|
||||
export function render(
|
||||
vnode: preact.VNode<any>,
|
||||
parent: Element,
|
||||
callback?: () => void
|
||||
): Component | null;
|
||||
|
||||
export function hydrate(
|
||||
vnode: preact.VNode<any>,
|
||||
parent: Element,
|
||||
callback?: () => void
|
||||
): Component | null;
|
||||
|
||||
export function unmountComponentAtNode(
|
||||
container: Element | Document | ShadowRoot | DocumentFragment
|
||||
): boolean;
|
||||
|
||||
export function createFactory(
|
||||
type: preact.VNode<any>['type']
|
||||
): (
|
||||
props?: any,
|
||||
...children: preact.ComponentChildren[]
|
||||
) => preact.VNode<any>;
|
||||
export function isValidElement(element: any): boolean;
|
||||
export function findDOMNode(
|
||||
component: preact.Component | Element
|
||||
): Element | null;
|
||||
|
||||
export abstract class PureComponent<P = {}, S = {}> extends preact.Component<
|
||||
P,
|
||||
S
|
||||
> {
|
||||
isPureReactComponent: boolean;
|
||||
}
|
||||
|
||||
export function memo<P = {}>(
|
||||
component: preact.FunctionalComponent<P>,
|
||||
comparer?: (prev: P, next: P) => boolean
|
||||
): preact.FunctionComponent<P>;
|
||||
export function memo<C extends preact.FunctionalComponent<any>>(
|
||||
component: C,
|
||||
comparer?: (
|
||||
prev: preact.ComponentProps<C>,
|
||||
next: preact.ComponentProps<C>
|
||||
) => boolean
|
||||
): C;
|
||||
|
||||
export interface ForwardFn<P = {}, T = any> {
|
||||
(props: P, ref: ForwardedRef<T>): preact.ComponentChild;
|
||||
displayName?: string;
|
||||
}
|
||||
|
||||
export function forwardRef<R, P = {}>(
|
||||
fn: ForwardFn<P, R>
|
||||
): preact.FunctionalComponent<Omit<P, 'ref'> & { ref?: preact.Ref<R> }>;
|
||||
|
||||
interface MutableRefObject<T> {
|
||||
current: T;
|
||||
}
|
||||
|
||||
export type ForwardedRef<T> = ((instance: T | null) => void) | MutableRefObject<T | null> | null;
|
||||
|
||||
export function unstable_batchedUpdates(
|
||||
callback: (arg?: any) => void,
|
||||
arg?: any
|
||||
): void;
|
||||
|
||||
export type PropsWithChildren<P = unknown> = P & {
|
||||
children?: preact.ComponentChild | undefined
|
||||
};
|
||||
|
||||
export const Children: {
|
||||
map<T extends preact.ComponentChild, R>(
|
||||
children: T | T[],
|
||||
fn: (child: T, i: number) => R
|
||||
): R[];
|
||||
forEach<T extends preact.ComponentChild>(
|
||||
children: T | T[],
|
||||
fn: (child: T, i: number) => void
|
||||
): void;
|
||||
count: (children: preact.ComponentChildren) => number;
|
||||
only: (children: preact.ComponentChildren) => preact.ComponentChild;
|
||||
toArray: (children: preact.ComponentChildren) => preact.VNode<{}>[];
|
||||
};
|
||||
|
||||
// scheduler
|
||||
export const unstable_ImmediatePriority: number;
|
||||
export const unstable_UserBlockingPriority: number;
|
||||
export const unstable_NormalPriority: number;
|
||||
export const unstable_LowPriority: number;
|
||||
export const unstable_IdlePriority: number;
|
||||
export function unstable_runWithPriority(
|
||||
priority: number,
|
||||
callback: () => void
|
||||
): void;
|
||||
export const unstable_now: () => number;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue