Finish log page

This commit is contained in:
2023-11-09 15:26:33 +08:00
parent 13c00b963d
commit cece8b2a83
5 changed files with 134 additions and 31 deletions

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

@@ -2,6 +2,7 @@ import * as React from 'react'
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'
declare global {
type IconComponent =
@@ -14,4 +15,5 @@ declare global {
type _FilterValue = FilterValue
type _SorterResult<T> = SorterResult<T>
type _SortOrder = SortOrder
type _CheckboxChangeEvent = CheckboxChangeEvent
}