Magek Framework
    Preparing search index...

    Interface MethodDecoratorContext

    interface MethodDecoratorContext {
        kind: "method";
        name: string | symbol;
        static: boolean;
        private: boolean;
        metadata?: DecoratorMetadataObject;
        access?: { get?: (object: any) => any; has?: (object: any) => boolean };
        addInitializer?: (initializer: () => void) => void;
    }
    Index

    Properties

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