UNPKG

domain-objects

Version:

A simple, convenient way to represent domain objects, leverage domain knowledge, and add runtime validation in your code base.

6 lines (5 loc) 196 B
/** * .what = checks if an object is an instance of DomainLiteral * .why = supports cross version compatability evaluation */ export declare const isOfDomainLiteral: (obj: unknown) => boolean;