24 lines
495 B
TypeScript
24 lines
495 B
TypeScript
import '@umijs/max/typings';
|
|
|
|
declare global {
|
|
declare type EditRow<T> = T | undefined;
|
|
|
|
interface TableParams {
|
|
pagination?: TablePaginationConfig;
|
|
sortField?: string;
|
|
sortOrder?: string;
|
|
filters?: Parameters<GetProp<TableProps, 'onChange'>>[1];
|
|
}
|
|
|
|
const API_URL: string;
|
|
}
|
|
|
|
declare module '*.less';
|
|
declare module '*.svg';
|
|
declare module '*.png';
|
|
declare module '*.jpg';
|
|
declare module '*.jpeg';
|
|
declare module '*.gif';
|
|
declare module '*.bmp';
|
|
declare module '*.tiff';
|