1 | export interface Options extends SplitOptions {
|
2 | locale?: Locale;
|
3 | }
|
4 |
|
5 |
|
6 |
|
7 | export declare function noCase(input: string, options?: Options): string;
|
8 | export interface SplitOptions {
|
9 | separateNumbers?: boolean;
|
10 | }
|
11 |
|
12 |
|
13 |
|
14 | export declare function split(input: string, options?: SplitOptions): string[];
|
15 | export type Locale = string[] | string | false | undefined;
|
16 | export declare function toLower(locale: Locale): (input: string) => string;
|
17 | export declare function toUpper(locale: Locale): (input: string) => string;
|