docx-rs/docx-wasm/js/json/shape.ts

7 lines
104 B
TypeScript

import { Shape } from "./bindings/Shape";
export type ShapeJSON = {
type: "shape";
data: Shape;
};