UNPKG

vibez-core

Version:

Utilities, types and common dependencies.

10 lines (8 loc) 140 B
export interface Action { description: string; date: Date; actor: string; } export interface Auditable { actions: Array<Action>; }