UNPKG

@mui/internal-docs-infra

Version:

MUI Infra - internal documentation creation tools.

5 lines 209 B
/** * Converts a camelCase string to kebab-case. * Examples: "firstName""first-name", "name""name", "HTMLElement""h-t-m-l-element" */ export declare function toKebabCase(str: string): string;