mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
export type HistoryItem = {
|
|
id: string
|
|
ts: number
|
|
task: string
|
|
tokensIn: number
|
|
tokensOut: number
|
|
cacheWrites?: number
|
|
cacheReads?: number
|
|
totalCost: number
|
|
}
|