import { scalar } from "./base.scalar"; import { projectEntity } from "./projectEntity"; export declare namespace runtimeComponent { type Id = scalar.Uuid; interface Table { id?: Id; project?: projectEntity.Id; date?: Date; callCount?: scalar.Integer; totalSec?: scalar.Integer; avgSec?: scalar.Float; dbSelect?: scalar.Integer; dbUpdate?: scalar.Integer; dbInsert?: scalar.Integer; dbDelete?: scalar.Integer; dbAdmin?: scalar.Integer; dbError?: scalar.Integer; dbPercent?: scalar.Float; cacheGet?: scalar.Integer; cacheSet?: scalar.Integer; cacheError?: scalar.Integer; intTo?: scalar.Integer; intFrom?: scalar.Integer; emergencyCount?: scalar.Integer; alertCount?: scalar.Integer; criticalCount?: scalar.Integer; errorCount?: scalar.Integer; warningCount?: scalar.Integer; noticeCount?: scalar.Integer; specialCount?: scalar.Integer; } }