Merge pull request #2891 from tigercat2000/autocomplete_documentation

Terminal: There is now an interface definition for the autocomplete() 'data' argument.
This commit is contained in:
hydroflame
2022-03-08 16:34:57 -05:00
committed by GitHub
2 changed files with 29 additions and 16 deletions

View File

@@ -6904,3 +6904,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;
}