Interface ITagsResponse

interface ITagsResponse {
    tags: {
        [tagId: string]: {
            order: number;
        };
    };
}

Properties

Properties

tags: {
    [tagId: string]: {
        order: number;
    };
}