Files
2026-01-16 01:51:36 +00:00

6 lines
232 B
TypeScript

/** Is client side and not jsdom */
export declare const isBrowserClient: boolean;
/** Get unique id for accessibility usage */
export declare function getUUID(): number | string;
export default function useId(id?: string): string;