Terminal: There is now an interface definition for the autocomplete() 'data' argument.

This commit is contained in:
tigercat2000
2022-01-31 20:43:49 -08:00
parent 9ddb1c4379
commit f0557eadf7
2 changed files with 29 additions and 16 deletions

View File

@@ -6779,3 +6779,14 @@ interface GameInfo {
commit: string;
platform: string;
}
/**
* Used for autocompletion
* @public
*/
interface AutocompleteData {
servers: string[];
scripts: string[];
txts: string[];
flags(schema: [string, string | number | boolean | string[]][]): any;
}