UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

8 lines (7 loc) 222 B
import { Struct } from './Struct'; import { Id } from '../types/Id'; import { Json } from '../types/Json'; export declare abstract class Child extends Struct { readonly id: Id; protected merge(a: unknown): Json; }