UNPKG

@tsed/schema

Version:
14 lines (13 loc) 518 B
import { Type } from "@tsed/core"; import type { JsonClassStore } from "./JsonClassStore.js"; import { JsonEntityStore } from "./JsonEntityStore.js"; export declare class JsonPropertyStore extends JsonEntityStore { readonly parent: JsonClassStore; static get(target: Type<any>, propertyKey: string | symbol): JsonPropertyStore; protected build(): void; } /** * @alias JsonPropertyStore */ export type PropertyMetadata = JsonPropertyStore; export declare const PropertyMetadata: typeof JsonPropertyStore;