Magek Framework
    Preparing search index...

    Interface FieldDecoratorContext

    interface FieldDecoratorContext {
        kind: "field";
        name: string | symbol;
        static: boolean;
        private: boolean;
        metadata?: DecoratorMetadataObject;
        access?: {
            get?: (object: any) => any;
            set?: (object: any, value: any) => void;
        };
        addInitializer?: (initializer: () => void) => void;
    }
    Index

    Properties

    kind: "field"
    name: string | symbol
    static: boolean
    private: boolean
    access?: { get?: (object: any) => any; set?: (object: any, value: any) => void }
    addInitializer?: (initializer: () => void) => void