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.
25 lines
556 B
25 lines
556 B
1 year ago
|
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||
|
export default class BackTop extends SuperComponent {
|
||
|
externalClasses: string[];
|
||
|
options: {
|
||
|
multipleSlots: boolean;
|
||
|
};
|
||
|
properties: import("./type").TdBackTopProps;
|
||
|
relations: RelationsOptions;
|
||
|
data: {
|
||
|
prefix: string;
|
||
|
classPrefix: string;
|
||
|
_icon: any;
|
||
|
};
|
||
|
observers: {
|
||
|
icon(): void;
|
||
|
};
|
||
|
lifetimes: {
|
||
|
ready(): void;
|
||
|
};
|
||
|
methods: {
|
||
|
setIcon(v: any): void;
|
||
|
toTop(): void;
|
||
|
};
|
||
|
}
|