minishouyin/node_modules/rc-select/lib/hooks/useId.d.ts

6 lines
232 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
/** 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;