/// import * as mongoose from "mongoose"; import { IStatistic, IStatisticProps } from "../../models/StatisticModelGenerator"; export interface ICSSUsageProps extends IStatisticProps { usage: any; } export interface ICSSUsage extends IStatistic { json: () => ICSSUsageProps; } declare let CSSUsage: mongoose.Model; export default CSSUsage;