diff --git a/src/structure/shapes.ts b/src/structure/shapes.ts index 7b3899ac7..d1fd4f38f 100644 --- a/src/structure/shapes.ts +++ b/src/structure/shapes.ts @@ -23,6 +23,12 @@ export interface XYZ { z: number; } +export interface BaseShapeData { + kind: string; + settings: {}; + atom_settings: {}; +} + export interface SphereData { kind: 'sphere'; radius: number;