diff --git a/packages/firefly/types/index.d.ts b/packages/firefly/types/index.d.ts index 46f4cd2..1d6210b 100644 --- a/packages/firefly/types/index.d.ts +++ b/packages/firefly/types/index.d.ts @@ -95,7 +95,7 @@ declare module "@outwalk/firefly/express" { import type { Platform, Route } from "@outwalk/firefly"; import type { Request } from "express"; - export interface ExpressOptions { logErrors?: boolean; }; + export interface ExpressOptions { logErrors?: boolean; } export class ExpressPlatform extends Platform { @@ -118,6 +118,7 @@ declare module "@outwalk/firefly/mongoose" { import type { Decorator, Database } from "@outwalk/firefly"; import type mongoose from "mongoose"; + // @ts-ignore - using Partial like this is invalid but it satisifies the compiler for our use case. export class Schema extends Partial { } export class Model extends mongoose.Model { }