Interface TiledProject

interface TiledProject {
    propertyTypes: {
        members: {
            name: string;
            propertyType?: string;
            type: string;
            value: any;
        }[];
        name: string;
        type: string;
    }[];
}

Properties

Properties

propertyTypes: {
    members: {
        name: string;
        propertyType?: string;
        type: string;
        value: any;
    }[];
    name: string;
    type: string;
}[]

Type declaration

  • members: {
        name: string;
        propertyType?: string;
        type: string;
        value: any;
    }[]
  • name: string
  • type: string