UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

6 lines (5 loc) 219 B
type TransformKeys<K> = K extends `_${infer Rest}` ? Rest : K; export declare function transformObjectProperties<T extends Record<string, unknown>>(obj: T): { [K in keyof T as TransformKeys<K>]: T[K]; }; export {};