@syncfusion/ej2-react-buttons
Version:
A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React
26 lines (25 loc) • 795 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { ChipModel } from '@syncfusion/ej2-buttons';
export interface ChipDirTypecast {
template?: string | Function | any;
}
/**
* `ChipDirective` directive represent a chip of the React ChipList.
* ```html
* <ChipListComponent>
* <ChipsDirective>
* <ChipDirective text='chip1'></ChipDirective>
* <ChipDirective text='chip2'></ChipDirective>
* </ChipsDirective>
* </ChipListComponent>
* ```
*/
export declare class ChipDirective extends ComplexBase<ChipModel | ChipDirTypecast & {
children?: React.ReactNode;
}, ChipModel | ChipDirTypecast> {
static moduleName: string;
}
export declare class ChipsDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}