mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 07:57:59 +00:00
14 lines
515 B
TypeScript
14 lines
515 B
TypeScript
import type { AnyString } from '../types.js';
|
|
export declare const CC_TO_UP: string[];
|
|
export declare const CC_TO_LO: string[];
|
|
/**
|
|
* @name stringCamelCase
|
|
* @summary Convert a dash/dot/underscore/space separated Ascii string/String to camelCase
|
|
*/
|
|
export declare const stringCamelCase: (value: AnyString) => string;
|
|
/**
|
|
* @name stringPascalCase
|
|
* @summary Convert a dash/dot/underscore/space separated Ascii string/String to PascalCase
|
|
*/
|
|
export declare const stringPascalCase: (value: AnyString) => string;
|