UNPKG

@tsed/cli-core

Version:
7 lines (6 loc) 301 B
import { StoreSet, useDecorators } from "@tsed/core"; import { Injectable } from "@tsed/di"; import { CommandStoreKeys } from "../domains/CommandStoreKeys.js"; export function Command(options) { return useDecorators(Injectable({ type: "command" }), StoreSet(CommandStoreKeys.COMMAND, options)); }