From d18bfea77d5e9ecc6fef62dccf69e0d433a3e4d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Szentgr=C3=B3ti?= Date: Sun, 23 Jun 2024 17:48:24 +0200 Subject: [PATCH] feat: export types --- src/index.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/index.ts b/src/index.ts index d729581..05c58e3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,18 @@ export { getObjectDiff } from "./object-diff"; export { getListDiff } from "./list-diff"; export { isEqual, isObject } from "./utils"; +export { + type DataDiff, + type ListData, + type ListDiff, + type ListDiffStatus, + type ListOptions, + type ListStatusTuple, + type ObjectData, + type ObjectDiff, + type ObjectDiffStatus, + type ObjectOptions, + type ObjectStatusTuple, + type SubProperties, + type isEqualOptions +} from "./model";