Add command autocomplete

This commit is contained in:
Daniel Espino García
2022-03-17 18:07:04 +01:00
parent 088aa193ab
commit b2408bd5d1
20 changed files with 2265 additions and 21 deletions

2
types/api/apps.d.ts vendored
View File

@@ -179,7 +179,7 @@ type AppField = {
type AutocompleteSuggestion = {
suggestion: string;
complete?: string;
complete: string;
description?: string;
hint?: string;
iconData?: string;

View File

@@ -19,6 +19,7 @@ type Command = {
'display_name': string;
'description': string;
'url': string;
'autocomplete_icon_data'?: string;
};
type CommandArgs = {