From a21da50121bbeabe42bec6a42b92d68aed337cb0 Mon Sep 17 00:00:00 2001 From: Ritesh Mukim <14933185+riteshmukim@users.noreply.github.com> Date: Tue, 17 Oct 2023 15:48:53 +0530 Subject: [PATCH] Fixed all linting issues of core-util types.ts --- libs/movex-core-util/src/lib/core-util/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/movex-core-util/src/lib/core-util/types.ts b/libs/movex-core-util/src/lib/core-util/types.ts index 3c87a512..6ab2d53f 100644 --- a/libs/movex-core-util/src/lib/core-util/types.ts +++ b/libs/movex-core-util/src/lib/core-util/types.ts @@ -17,7 +17,6 @@ export type NotUndefined = | NotUndefined[]; export type UnknownRecord = Record; -export type AnyRecord = Record; export type JsonPatchOp = | AddOperation> @@ -32,6 +31,7 @@ export type JsonPatchOp = export type JsonPatch = JsonPatchOp[]; export type IsOfType = T extends U ? K : never; + export type OnlyKeysOfType> = { [K in keyof O]: IsOfType; }[keyof O];