Files
cc-utils/types/cc/completion.d.ts

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[];
}