mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
Publish histories (#1331)
* fix http plugin edge (#95) * fix http plugin edge * use getHandleId * perf: i18n file * feat: histories list * perf: request lock * fix: ts * move box components * fix: edit form refresh --------- Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
This commit is contained in:
8
packages/web/common/fetch/type.d.ts
vendored
Normal file
8
packages/web/common/fetch/type.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
export type PaginationProps<T = {}> = T & {
|
||||
current: number;
|
||||
pageSize: number;
|
||||
};
|
||||
export type PaginationResponse<T = any> = {
|
||||
total: number;
|
||||
list: T[];
|
||||
};
|
Reference in New Issue
Block a user