Interface StatsCountersRPC

interface StatsCountersRPC {
    created: string;
    entries: {
        detail: string;
        dir: "in" | "out";
        time: string;
        type: string;
        value: `${number}`;
    }[];
    type: "counters";
}

Properties

Properties

created: string
entries: {
    detail: string;
    dir: "in" | "out";
    time: string;
    type: string;
    value: `${number}`;
}[]

Type declaration

  • detail: string
  • dir: "in" | "out"
  • time: string
  • type: string
  • value: `${number}`
type: "counters"