SourceTermAnalysisSystem_vue/node_modules/@antv/x6-common/es/string/format.d.ts
2026-05-15 10:22:44 +08:00

9 lines
452 B
TypeScript

export { lowerFirst, upperFirst, camelCase } from 'lodash-es';
export declare const kebabCase: (s: string) => string;
export declare const pascalCase: (s: string) => string;
export declare const constantCase: (s: string) => string;
export declare const dotCase: (s: string) => string;
export declare const pathCase: (s: string) => string;
export declare const sentenceCase: (s: string) => string;
export declare const titleCase: (s: string) => string;