UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

10 lines (9 loc) 290 B
import { Struct } from './Struct'; import { DateTime } from './DateTime'; import { Identity } from '../types/Identity'; import { Json } from '../types/Json'; export declare class Audit extends Struct { readonly by: Identity; readonly when: DateTime; constructor(json?: Json); }