diff options
Diffstat (limited to 'static/src/component.ts')
| -rw-r--r-- | static/src/component.ts | 8 |
1 files changed, 8 insertions, 0 deletions
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; +} |
