7 lines
104 B
TypeScript
7 lines
104 B
TypeScript
|
import { Shape } from "./bindings/Shape";
|
||
|
|
||
|
export type ShapeJSON = {
|
||
|
type: "shape";
|
||
|
data: Shape;
|
||
|
};
|