7 lines
306 B
TypeScript
7 lines
306 B
TypeScript
|
export { camelize, hyphenate, hyphenate as kebabCase, } from '@vue/shared';
|
||
|
/**
|
||
|
* fork from {@link https://github.com/sindresorhus/escape-string-regexp}
|
||
|
*/
|
||
|
export declare const escapeStringRegexp: (string?: string) => string;
|
||
|
export declare const capitalize: <T extends string>(str: T) => Capitalize<T>;
|