interface Size {
    id: number;
    type: "clothing" | "cap" | "accessory";
    name: string;
    chest_width: null | number;
    body_length: null | number;
    sort_order: number;
}

Properties

id: number
type: "clothing" | "cap" | "accessory"
name: string
chest_width: null | number
body_length: null | number
sort_order: number