mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-29 09:44:47 +00:00
feat: 账单模块
This commit is contained in:
10
src/types/index.d.ts
vendored
10
src/types/index.d.ts
vendored
@@ -3,4 +3,12 @@ import type { Mongoose } from 'mongoose';
|
||||
declare global {
|
||||
var mongodb: Mongoose | string | null;
|
||||
}
|
||||
export {};
|
||||
|
||||
export type PagingData<T> = {
|
||||
pageNum;
|
||||
pageSize;
|
||||
data: T[];
|
||||
total;
|
||||
};
|
||||
|
||||
export type RequestPaging = { pageNum: number; pageSize: number };
|
||||
|
Reference in New Issue
Block a user