Commit 8bb49415 authored by Lee ByeongJun's avatar Lee ByeongJun
Browse files

fix: vocab type error

parent 101d536f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ export function getTypeId(
export function getTypeId(
  object: Object | Link | undefined | null,
): URL | undefined | null {
  if (object == null) return object;
  if (object == null) return object as undefined | null;
  const cls = object.constructor as
    & (new (...args: unknown[]) => Object | Link)
    & {