You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
518 B
22 lines
518 B
1 year ago
|
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;
|
||
|
};
|
||
|
}
|