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.

21 lines
486 B

import { SuperComponent } from '../common/src/index';
export default class Fab extends SuperComponent {
properties: import("./type").TdFabProps;
externalClasses: string[];
data: {
prefix: string;
classPrefix: string;
baseButtonProps: {
size: string;
shape: string;
theme: string;
};
};
observers: {
text(val: any): void;
};
methods: {
onTplButtonTap(e: any): void;
};
}