interface IInput {
    data: {
        cell_id: string;
        is_active?: null | boolean;
        label?: null | string;
    };
}

Properties

Properties

data: {
    cell_id: string;
    is_active?: null | boolean;
    label?: null | string;
}

Type declaration

  • cell_id: string

    Ячейка, которую правят.

  • Optional is_active?: null | boolean

    Оставить ячейку в обороте. Вывести можно только пустую ячейку.

  • Optional label?: null | string

    Новая подпись ячейки.