Files
wdi-dashboard/node_modules/@chakra-ui/system/dist/system.utils.d.ts

10 lines
319 B
TypeScript
Raw Normal View History

2024-08-16 15:06:52 +05:30
/**
* All html and svg elements for chakra components.
* This is mostly for `chakra.<element>` syntax.
*/
type DOMElements = keyof JSX.IntrinsicElements;
declare function isTag(target: any): boolean;
declare function getDisplayName(primitive: any): string;
export { DOMElements, isTag as default, getDisplayName };