import { scalar } from "./base.scalar"; import { memberModel } from "./memberModel"; import { actionLog } from "./actionLog"; export declare namespace historyComponent { type Id = scalar.Uuid; interface Table { id?: Id; createdAt?: scalar.IsoDatetime; createdBy?: memberModel.Id; sourceType?: scalar.Alpha; sourceId?: scalar.PossibleId; context?: actionLog.Context; activity?: scalar.Alpha; data?: scalar.Unknown; } }