Magek Framework
    Preparing search index...

    Interface CommandMetadata<TCommand>

    interface CommandMetadata<TCommand = unknown> {
        class: CommandInterface<TCommand>;
        properties: PropertyMetadata[];
        methods: PropertyMetadata[];
        authorizer: CommandAuthorizer;
        before: CommandBeforeFunction[];
    }

    Type Parameters

    • TCommand = unknown
    Index

    Properties

    properties: PropertyMetadata[]
    methods: PropertyMetadata[]
    authorizer: CommandAuthorizer