Vanessa 2024-03-25 18:19:36 +08:00
parent 2e63ebc2ff
commit d67235589c
2 changed files with 6 additions and 22 deletions

View file

@ -1508,7 +1508,7 @@ declare namespace Config {
/**
* Dock tab hotkey
*/
hotkey: string;
hotkey?: string;
/**
* Hotkey description ID
*/
@ -1525,7 +1525,7 @@ declare namespace Config {
/**
* Tab title
*/
title: string;
title?: string;
/**
* Tab type
*/
@ -1636,7 +1636,7 @@ declare namespace Config {
/**
* Whether the tab is active
*/
active: boolean;
active?: boolean;
/**
* Tab content
*/
@ -1660,11 +1660,11 @@ declare namespace Config {
/**
* Whether the tab is pinned
*/
pin: boolean;
pin?: boolean;
/**
* Tab title
*/
title: string;
title?: string;
}
/**