mirror of
https://github.com/SikongJueluo/cc-utils.git
synced 2025-11-05 03:37:50 +08:00
8 lines
318 B
TypeScript
8 lines
318 B
TypeScript
/** @noSelfInFile **/
|
|
/** @noResolution **/
|
|
declare module "cc.strings" {
|
|
export function wrap(text: string, width?: number): string[];
|
|
export function ensure_width(text: string, width?: number): string;
|
|
export function split(str: string, deliminator: string, plain?: boolean, limit?: number): string[];
|
|
}
|