Migrate "cluster_settings.test.jsx, message_export_settings.test.jsx, schema_admin_settings.test.jsx, interactive_dialog/index.js" to Typescript (#26111)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
0a1acfeb80
Коммит
30024c78af
@@ -128,10 +128,25 @@ export type IntegrationsState = {
|
||||
appsBotIDs: string[];
|
||||
systemCommands: IDMappedObjects<Command>;
|
||||
commands: IDMappedObjects<Command>;
|
||||
dialog?: {
|
||||
url: string;
|
||||
dialog: Dialog;
|
||||
};
|
||||
};
|
||||
|
||||
type Dialog = {
|
||||
callback_id?: string;
|
||||
elements?: DialogElement[];
|
||||
title: string;
|
||||
introduction_text?: string;
|
||||
icon_url?: string;
|
||||
submit_label?: string;
|
||||
notify_on_cancel?: boolean;
|
||||
state?: string;
|
||||
};
|
||||
|
||||
export type DialogSubmission = {
|
||||
url: string;
|
||||
url?: string;
|
||||
callback_id: string;
|
||||
state: string;
|
||||
user_id: string;
|
||||
|
||||
Ссылка в новой задаче
Block a user