Interface UsageRecord

interface UsageRecord {
    date: string;
    action: string;
    count: number;
    tokens: number;
    [k: string]: unknown;
}

Indexable

  • [k: string]: unknown

Properties

Properties

date: string
action: string
count: number
tokens: number