cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 367 B
TypeScript
import { IStatistics } from "./statistics.interface";
export interface StatisticsProduct extends IStatistics {
totalBlend: number;
totalTopping: number;
activesSimple: number;
totalSimple: number;
activesParent: number;
totalParent: number;
activesInput: number;
totalInput: number;
activesChild: number;
totalChild: number;
}