import { MatChipGrid, MatChipInputEvent } from '@angular/material/chips'; import { ZValidatorOutput } from '@material-zui/angular/type'; export type IStyle = { 'background-color': string; color: string; }; export type ZCInputTokenEndFunc = (event: MatChipInputEvent, chipList: MatChipGrid) => void | Promise; export type ZCValidatorFunc = (values: any[], selectedItem?: any[]) => ZValidatorOutput | Promise; export interface IDataChange { selectedValue: T1[]; selectedItems: T2[]; }