UNPKG

ts-deserializable

Version:

Decorator pattern for deserializing unverified data to an instance of a class in typescript.

10 lines (9 loc) 343 B
import { DsOperation } from './ds-prop.decorator'; import "reflect-metadata"; export declare namespace DsOperations { function get(target: any): any | undefined; function set(target: any, operations: { [key: string]: DsOperation[]; }): void; function add(target: any, key: string, ops: DsOperation[]): void; }