From 26214796a0ca9db2df82f0e0ffa71960e63ffd47 Mon Sep 17 00:00:00 2001 From: Michele Ceriotti Date: Tue, 29 Aug 2023 13:10:53 -0700 Subject: [PATCH] Just a mini-edit to start the PR. --- src/structure/shapes.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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;