| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | | import { SuperComponent } from '../common/src/index'; |  | export default class Fab extends SuperComponent { |  |     properties: import("./type").TdFabProps; |  |     externalClasses: string[]; |  |     data: { |  |         prefix: string; |  |         classPrefix: string; |  |         buttonData: { |  |             size: string; |  |             shape: string; |  |             theme: string; |  |             externalClass: string; |  |         }; |  |         moveStyle: any; |  |     }; |  |     observers: { |  |         'buttonProps.**, icon, text, ariaLabel'(): void; |  |     }; |  |     methods: { |  |         onTplButtonTap(e: any): void; |  |         onMove(e: any): void; |  |         computedSize(): void; |  |     }; |  | } | 
 |