UNPKG

vibez-core

Version:

Utilities, types and common dependencies.

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