mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 12:20:20 +01:00
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
type FC<T = Record<string, unknown>> = (
|
|
props: React.PropsWithChildren<T>
|
|
) => React.JSX.Element | null;
|
|
|
|
type FCWithRef<R = HTMLElement, T = Record<string, unknown>> = (
|
|
props: React.PropsWithChildren<T> & { ref?: React.RefObject<R | null> }
|
|
) => React.JSX.Element | null;
|
|
|
|
declare module "utif" {
|
|
export const bufferToURI: (data: Buffer) => string;
|
|
}
|