Refactor #4433 - Sidebar

This commit is contained in:
Tuğçe Küçükoğlu 2023-09-19 13:23:58 +03:00
parent 66cfbe54fc
commit 0f86b62fe2
3 changed files with 29 additions and 12 deletions

View file

@ -188,6 +188,16 @@ export interface SidebarSlots {
*/
class: any;
}): VNode[];
/**
* Custom container slot.
* @param {Object} scope - container slot's params.
*/
container(scope: {
/**
* Close sidebar function.
*/
onClose: () => void;
}): VNode[];
}
/**