/// import * as mongoose from "mongoose"; import { IStatistic, IStatisticProps } from "../../models/StatisticModelGenerator"; export interface IByteCountProps extends IStatisticProps { contentType: string; contentLength: number; msgId?: string; type: string; } export interface IByteCount extends IStatistic, IByteCountProps { json: () => IByteCountProps; } declare let ByteCounts: mongoose.Model; export default ByteCounts;