interface Plugin<Ctx> {
    name: string;
    register?: ((ctx: Ctx) => any);
}

Type Parameters

  • Ctx = any

Properties

Properties

name: string
register?: ((ctx: Ctx) => any)