feat(division): create tree item converter for division

This commit is contained in:
riefive
2025-10-03 10:54:35 +07:00
parent 757b8c0444
commit 539a1cefb0
3 changed files with 26 additions and 0 deletions
+7
View File
@@ -14,6 +14,13 @@ export interface PaginationMeta {
source: string
}
export interface TreeItem {
value: string
label: string
hasChildren: boolean
children?: TreeItem[]
}
export interface Base {
name: string
code: string