This commit is contained in:
Archer
2023-12-31 14:12:51 +08:00
committed by GitHub
parent ccca0468da
commit 9ccfda47b7
270 changed files with 8182 additions and 1295 deletions

View File

@@ -1,5 +1,5 @@
import { BillSourceEnum } from './constants';
import { BillListItemType } from './type';
import { BillListItemCountType, BillListItemType } from './type';
export type CreateTrainingBillProps = {
name: string;
@@ -7,13 +7,12 @@ export type CreateTrainingBillProps = {
agentModel?: string;
};
export type ConcatBillProps = {
export type ConcatBillProps = BillListItemCountType & {
teamId: string;
tmbId: string;
billId?: string;
total: number;
listIndex?: number;
tokens?: number;
};
export type CreateBillProps = {