Add role table

This commit is contained in:
2023-11-10 11:57:55 +08:00
parent cece8b2a83
commit 66c88fec48
8 changed files with 313 additions and 16 deletions

2
src/ant-design.d.ts vendored
View File

@@ -3,6 +3,7 @@ import { CustomIconComponentProps } from '@ant-design/icons/es/components/Icon'
import { TablePaginationConfig } from 'antd/lib'
import { ColumnsType, FilterValue, SorterResult, SortOrder } from 'antd/es/table/interface'
import { CheckboxChangeEvent } from 'antd/es/checkbox'
import type { DataNode } from 'antd/es/tree'
declare global {
type IconComponent =
@@ -16,4 +17,5 @@ declare global {
type _SorterResult<T> = SorterResult<T>
type _SortOrder = SortOrder
type _CheckboxChangeEvent = CheckboxChangeEvent
type _DataNode = DataNode
}