Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
rot1024 committed Jan 25, 2022
1 parent 4fc1243 commit b01bc7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/molecules/Visualizer/Layers/index.tsx
Expand Up @@ -3,7 +3,7 @@ import React, { ComponentType, useMemo, useCallback } from "react";
import { ClusterProperty, ClusterProps } from "../Engine";
import P from "../Primitive";

import { LayerStore, Layer } from "./store";
import type { LayerStore, Layer } from "./store";

export type { Layer } from "../Primitive";

Expand Down
2 changes: 2 additions & 0 deletions src/components/molecules/Visualizer/Layers/store.ts
Expand Up @@ -2,6 +2,8 @@ import { objectFromGetter } from "@reearth/util/object";

import type { Layer } from "../Primitive";

export type { Layer } from "../Primitive";

// Layer objects but optimized for plugins
type PluginLayer = Readonly<Layer>;

Expand Down

0 comments on commit b01bc7f

Please sign in to comment.