Type Alias FVTTSidebarRemoveData
FVTTSidebarRemoveData : {
condition?: boolean | (() => boolean);
id: string;
}
condition?: boolean | (() => boolean);
id: string;
}
Type declaration
Optional
condition?: boolean | (() => boolean)id: string
The ID for the sidebar tab to remove. This must be an existing sidebar tab ID.
A boolean value or function to invoke that returns a boolean value to control sidebar replacement. This is executed in the
renderSidebar
callback internally.