From a0a2068b66204d7d06eb3c3b4aa61b28469121f6 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sat, 24 Aug 2024 19:11:26 -0700 Subject: improve event parsing and begin sending events from the client --- static/src/component.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 static/src/component.ts (limited to 'static/src/component.ts') diff --git a/static/src/component.ts b/static/src/component.ts new file mode 100644 index 0000000..d338cad --- /dev/null +++ b/static/src/component.ts @@ -0,0 +1,8 @@ +export enum ComponentType { + POSITION = "POSITION", + RENDERABLE = "RENDERABLE", +} + +export interface Component { + name: string; +} -- cgit v1.3