This commit is contained in:
icssoa
2025-09-11 18:37:44 +08:00
parent 0a70e9237c
commit ec1f85fa3d
5 changed files with 19 additions and 14 deletions

View File

@@ -225,3 +225,8 @@ declare type ClTreeComponentPublicInstance = {
expandAll: () => void;
collapseAll: () => void;
};
declare type ClCalendarComponentPublicInstance = {
open(cb: ((value: string | string[]) => void) | null = null): void;
close(): void;
};