22 lines
518 B
TypeScript
22 lines
518 B
TypeScript
|
import { SuperComponent } from '../common/src/index';
|
||
|
import type { TdBadgeProps } from './type';
|
||
|
export interface BadgeProps extends TdBadgeProps {
|
||
|
}
|
||
|
export default class Badge extends SuperComponent {
|
||
|
options: {
|
||
|
multipleSlots: boolean;
|
||
|
};
|
||
|
externalClasses: string[];
|
||
|
properties: TdBadgeProps;
|
||
|
data: {
|
||
|
prefix: string;
|
||
|
classPrefix: string;
|
||
|
value: string;
|
||
|
labelID: string;
|
||
|
descriptionID: string;
|
||
|
};
|
||
|
lifetimes: {
|
||
|
ready(): void;
|
||
|
};
|
||
|
}
|