aboutsummaryrefslogtreecommitdiff
path: root/static/src/component.ts
blob: d338cad2d49cb23a137e8787068e90ffc3a3d147 (plain) (blame)
1
2
3
4
5
6
7
8
export enum ComponentType {
  POSITION = "POSITION",
  RENDERABLE = "RENDERABLE",
}

export interface Component {
  name: string;
}