mirror of
https://github.com/SikongJueluo/cc-utils.git
synced 2025-11-04 19:27:50 +08:00
9 lines
466 B
TypeScript
9 lines
466 B
TypeScript
/** @noSelfInFile **/
|
|
/** @noResolution **/
|
|
declare module "cc.completion" {
|
|
export function choice(text: string, choices: string[], add_space?: boolean): string[];
|
|
export function peripheral(text: string, add_space?: boolean): string[];
|
|
export function side(text: string, add_space?: boolean): string[];
|
|
export function setting(text: string, add_space?: boolean): string[];
|
|
export function command(text: string, add_space?: boolean): string[];
|
|
} |