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.
28 lines
623 B
28 lines
623 B
import { SuperComponent } from '../common/src/index';
|
|
export default class Image extends SuperComponent {
|
|
externalClasses: string[];
|
|
options: {
|
|
multipleSlots: boolean;
|
|
};
|
|
properties: import("./type").TdImageProps;
|
|
data: {
|
|
prefix: string;
|
|
isLoading: boolean;
|
|
isFailed: boolean;
|
|
innerStyle: string;
|
|
classPrefix: string;
|
|
};
|
|
preSrc: string;
|
|
lifetimes: {
|
|
attached(): void;
|
|
};
|
|
observers: {
|
|
src(): void;
|
|
};
|
|
methods: {
|
|
onLoaded(e: any): void;
|
|
onLoadError(e: any): void;
|
|
update(): void;
|
|
};
|
|
}
|