UNPKG

domain-objects

Version:

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

8 lines (7 loc) 270 B
import { DomainObject } from '../instantiation/DomainObject'; /** * returns the metadata keys defined on the class of the domain object */ export declare const getMetadataKeys: (obj: DomainObject<any>, options?: { nameOfFunctionNeededFor?: string; }) => string[];