chat-ui / src /lib /types /AssistantStats.ts
Mishig
[Assistants] trending feature (#938)
a4c3fca unverified
raw history blame
No virus
239 Bytes
import type { Timestamps } from "./Timestamps";
import type { Assistant } from "./Assistant";
export interface AssistantStats extends Timestamps {
assistantId: Assistant["_id"];
date: {
at: Date;
span: "hour";
};
count: number;
}