24 lines
411 B
TypeScript
24 lines
411 B
TypeScript
/**
|
|
* @description User-Service parameters
|
|
*/
|
|
export interface IUserOptions {
|
|
uid: number;
|
|
}
|
|
|
|
export interface WpSite {
|
|
id: string;
|
|
wpApiUrl: string;
|
|
consumerKey: string;
|
|
consumerSecret: string;
|
|
siteName: string;
|
|
email: string;
|
|
emailPswd: string;
|
|
}
|
|
|
|
export interface PaginationParams {
|
|
current?: number; // 当前页码
|
|
pageSize?: number; // 每页数量
|
|
sorter?: any;
|
|
filter?: any;
|
|
}
|