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.
24 lines
609 B
24 lines
609 B
1 year ago
|
import { SuperComponent } from '../common/src/index';
|
||
|
export default class Link extends SuperComponent {
|
||
|
externalClasses: string[];
|
||
|
properties: import("./type").TdLinkProps;
|
||
|
data: {
|
||
|
prefix: string;
|
||
|
classPrefix: string;
|
||
|
};
|
||
|
observers: {
|
||
|
'theme, status, size, underline, navigatorProps'(): void;
|
||
|
prefixIcon(v: any): void;
|
||
|
suffixIcon(v: any): void;
|
||
|
};
|
||
|
lifetimes: {
|
||
|
attached(): void;
|
||
|
};
|
||
|
methods: {
|
||
|
setClass(): void;
|
||
|
onSuccess(e: any): void;
|
||
|
onFail(e: any): void;
|
||
|
onComplete(e: any): void;
|
||
|
};
|
||
|
}
|