4 lines
308 B
TypeScript
4 lines
308 B
TypeScript
import { ContainerOptions, PropertyOptions } from './options';
|
|
import { Registry } from './registry';
|
|
export declare function serde(options: ContainerOptions | PropertyOptions): (target: any, context: any) => void;
|
|
export declare function register(registry?: Registry): (target: any, _context: any) => void;
|