serde-ts/dist/decorator.d.ts
2025-05-18 20:05:52 -05:00

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;