UNPKG

@lucaspaganini/value-objects

Version:

TypeScript first validation and class creation library

10 lines (9 loc) 312 B
export declare type ObjectPathProperty = string | number; export declare class ObjectPath { private readonly _pathArray; constructor(_pathArray: Array<ObjectPathProperty>); push(prop: ObjectPathProperty): void; toArray(): Array<ObjectPathProperty>; valueOf(): string; toJSON(): string; }