import { BlockDescription } from "../../../aggregate/Blocks"; export type CallsInDate = { ts: number; n: number; t: number; }; /** * Number of calls per different time cycles. * It ignores the time filter completely, all cycles are included. */ export interface CallsPerPeriod { perDay: CallsInDate[]; perWeek: CallsInDate[]; perMonth: CallsInDate[]; } declare const _default: BlockDescription<"calls/per-period", CallsPerPeriod, undefined>; export default _default;