project init
This commit is contained in:
27
components/image/image.d.ts
vendored
Normal file
27
components/image/image.d.ts
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
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;
|
||||
widthStyle: string;
|
||||
classPrefix: string;
|
||||
};
|
||||
preSrc: string;
|
||||
lifetimes: {
|
||||
attached(this: Image): void;
|
||||
};
|
||||
observers: {
|
||||
src(): void;
|
||||
};
|
||||
methods: {
|
||||
onLoaded(e: any): void;
|
||||
onLoadError(e: any): void;
|
||||
update(): void;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user