Interface TiledProperty

interface TiledProperty {
    name: string;
    type:
        | "string"
        | "color"
        | "float"
        | "int"
        | "bool";
    value: string | number | boolean;
}

Properties

Properties

name: string
type:
    | "string"
    | "color"
    | "float"
    | "int"
    | "bool"
value: string | number | boolean