rooks
Version:
Essential React custom hooks ⚓ to super charge your components!
12 lines • 422 B
TypeScript
export declare type DeepNullable<T> = {
[K in keyof T]: DeepNullable<T[K]> | null;
};
export declare type ListenerOptions = boolean | {
capture?: boolean;
once?: boolean;
passive?: boolean;
signal?: AbortSignal;
};
export declare type UnknownFunction = (...args: unknown[]) => unknown;
export declare type ExcludeFunction<T> = Exclude<T, UnknownFunction>;
//# sourceMappingURL=utils.d.ts.map