Fix build error / additional type for flags

This commit is contained in:
Snarling 2022-08-24 20:28:38 -04:00
parent 650db2dee7
commit d1aa114e29

@ -7358,5 +7358,5 @@ interface AutocompleteData {
servers: string[]; servers: string[];
scripts: string[]; scripts: string[];
txts: string[]; txts: string[];
flags(schema: [string, string | number | boolean | string[]][]): { [key: string]: ScriptArg }; flags(schema: [string, string | number | boolean | string[]][]): { [key: string]: ScriptArg | string[] };
} }