UNPKG

react-wired-elements

Version:

Wired Elements as React components. TypeScript types included.

9 lines (8 loc) 236 B
declare type Key = 'attributes' | 'methods' | 'css'; declare type Values = { [key in Key]?: { [key: string]: any; }; }; export declare function useCustomElement(values: Values): (option: any) => void; export {};