Skip to content

JsonPropertyStore

@tsed/schema

Usage

typescript
import { JsonPropertyStore } from "@tsed/schema";

See /packages/specs/schema/src/domain/JsonPropertyStore.ts.

Overview

ts
class JsonPropertyStore extends JsonEntityStore {
    readonly parent: JsonClassStore;
    static get(target: Type<any>, propertyKey: string | symbol): JsonPropertyStore;
    protected build(): void;
}

readonly parent

ts
readonly parent: JsonClassStore;

static get

ts
static get(target: Type<any>, propertyKey: string | symbol): JsonPropertyStore;

protected build

ts
protected build(): void;

Released under the MIT License.