serde-ts/dist/decorator.d.ts
2025-05-18 21:47:04 -05:00

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;