@rvoh/dream
    Preparing search index...

    Interface DecoratorContext

    interface DecoratorContext {
        access: { get: () => unknown; has: () => unknown; set: () => unknown };
        addInitializer: (arg: (this: any) => void) => void;
        kind: "class" | "field" | "method" | "getter" | "setter";
        metadata: unknown;
        name: string;
        private: boolean;
        static: boolean;
    }
    Index

    Properties

    access: { get: () => unknown; has: () => unknown; set: () => unknown }
    addInitializer: (arg: (this: any) => void) => void
    kind: "class" | "field" | "method" | "getter" | "setter"
    metadata: unknown
    name: string
    private: boolean
    static: boolean