mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
26 lines
530 B
TypeScript
26 lines
530 B
TypeScript
import { BillSourceEnum } from './constants';
|
|
import { BillListItemCountType, BillListItemType } from './type';
|
|
|
|
export type CreateTrainingBillProps = {
|
|
name: string;
|
|
datasetId: string;
|
|
};
|
|
|
|
export type ConcatBillProps = BillListItemCountType & {
|
|
teamId: string;
|
|
tmbId: string;
|
|
billId?: string;
|
|
total: number;
|
|
listIndex?: number;
|
|
};
|
|
|
|
export type CreateBillProps = {
|
|
teamId: string;
|
|
tmbId: string;
|
|
appName: string;
|
|
appId?: string;
|
|
total: number;
|
|
source: `${BillSourceEnum}`;
|
|
list: BillListItemType[];
|
|
};
|