17 lines
256 B
TypeScript
17 lines
256 B
TypeScript
|
|
declare namespace DataInfoModel {
|
|
|
|
type QueryDataInfoData = {
|
|
collection: DataInfoBase[];
|
|
current: number;
|
|
total: number;
|
|
}
|
|
|
|
interface DataInfoBase {
|
|
id: string;
|
|
type: number;
|
|
dataString: string;
|
|
createdTime: Date;
|
|
}
|
|
|
|
} |