6 lines
398 B
TypeScript
6 lines
398 B
TypeScript
import { ContainerOptions, PropertyOptions } from './options';
|
|
import { Registry } from './registry';
|
|
export declare const Serde: unique symbol;
|
|
export declare function serde(options: ContainerOptions | PropertyOptions): (target: any, property?: PropertyKey) => any;
|
|
export declare function getMetadata(value: any): any;
|
|
export declare function register(registry?: Registry): (target: any) => any;
|