translation of descriptions of all methods, etc. into English

This commit is contained in:
2023-01-20 18:50:53 +03:00
parent 718b67e891
commit 15f73b164a
8 changed files with 179 additions and 201 deletions

View File

@@ -1,26 +1,26 @@
import { ICgSelect } from 'interfaces/cg-select.interface';
/**
* @description Настройки для создания чипсов.
* @description cSettings for creating chips.
*/
export interface ICreateBreadCrumb {
/**
* Определенный экземпляр класса.
* A specific instance of a class.
* @type {Element | null}
*/
element: Element | null;
/**
* Настройки селекта.
* Select settings.
* @type {ICgSelect}
*/
option: ICgSelect;
/**
* Массив индексов выбранных элементов.
* Array of indexes of selected elements.
* @type {number[]}
*/
indexes: number[];
/**
* Массив с выбранными элементами.
* Array with selected elements.
* @type {string[]}
*/
selectedItems: string[];