From 0e72d866e51f71af22de8997443614ac8f29ae4b Mon Sep 17 00:00:00 2001 From: Richard Sustek Date: Wed, 11 Dec 2024 16:27:12 +0100 Subject: [PATCH] Removes LiteralUnion from LogMessage type --- lib/core/models/log.models.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/models/log.models.ts b/lib/core/models/log.models.ts index 3d79840..a794d88 100644 --- a/lib/core/models/log.models.ts +++ b/lib/core/models/log.models.ts @@ -1,4 +1,4 @@ -import { LiteralUnion, MapiAction, MapiType, MigrationItemType } from '../index.js'; +import { MapiAction, MapiType, MigrationItemType } from '../index.js'; export type DebugType = | 'error' @@ -17,7 +17,7 @@ export type DebugType = | MapiAction; export interface LogMessage { - readonly type?: LiteralUnion; + readonly type?: DebugType; readonly message: string; }