GasWell-front/node_modules/element-plus/lib/utils/strings.d.ts

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>;