diff --git a/packages/object-util/src/ObjectUtil.ts b/packages/object-util/src/ObjectUtil.ts index 07b327c..fe0fc74 100644 --- a/packages/object-util/src/ObjectUtil.ts +++ b/packages/object-util/src/ObjectUtil.ts @@ -1,5 +1,5 @@ -type BasicObjectKeys = string | number | symbol -type BasicObject = { [P in K]?: V } +export type BasicObjectKeys = string | number | symbol +export type BasicObject = { [P in K]?: V } /** * Remap an object to an array through a function