/** * @author Martin Karkowski * @email m.karkowski@zema.de * @create date 2020-11-06 16:53:43 * @modify date 2020-12-30 18:37:18 * @desc [description] */ import { IPackageDescription } from "../../../lib/types/nope/nopePackage.interface"; import { HelloWorldModuleWithDecorators } from "./helloworldWithDecorators.module"; const TYPES = { helloworld: Symbol.for("helloworld") }; export const DESCRIPTION: IPackageDescription = { activationHandlers: [], autostart: {}, defaultInstances: [ { selector: "helloworld", options: { identifier: "instance01", type: "helloworld", params: [] } } ], nameOfPackage: "helloworldpackage", providedClasses: [ { description: { name: "helloworld", selector: TYPES.helloworld, type: HelloWorldModuleWithDecorators }, settings: { allowInstanceGeneration: true } } ], providedFunctions: [], requiredPackages: [], types: TYPES }; export default DESCRIPTION;