|
// Content/types.ts
|
|
|
|
export type Float = number;
|
|
export type Integer = number;
|
|
export type Text = string;
|
|
|
|
export type Vector = [Float, Float, Float];
|
|
|
|
export type Controller = string;
|
|
|
|
export type InputMapping = {}
|
|
|
|
export type InputMappingContext = InputMapping[];
|