Added description in interfaces and etc

This commit is contained in:
MaxOvs
2023-01-13 15:26:35 +03:00
parent 1830ae23ad
commit 4d10721b7b
21 changed files with 1728 additions and 84 deletions

View File

@ -1,8 +1,24 @@
import { ICgSelect } from '../../interfaces/cg-select.interface';
export interface ICreateBreadCrumb {
/**
* Определенный экземпляр класса.
* @type {Element | null}
*/
element: Element | null;
/**
* Настройки селекта.
* @type {ICgSelect}
*/
option: ICgSelect;
/**
* Массив индексов выбранных элементов.
* @type {number[]}
*/
indexes: number[];
/**
* Массив с выбранными элементами.
* @type {string[]}
*/
selectedItems: string[];
}