Type alias TypeA_WithStart<NeedContext>

TypeA_WithStart<NeedContext>: PluginModuleBase & {
    init: ((context: NeedContext) => void);
    start: ((ctx: StartContextBase) => void | Promise<void>);
}

TypeA are plugins that does not return a PluginContext

Type Parameters

  • NeedContext extends Record<string | symbol, any>

Generated using TypeDoc