mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
declare module "ui/image" {
|
|
|
|
import imageSource = require("image-source");
|
|
|
|
class Image {
|
|
android: android.widget.ImageView;
|
|
ios: UIKit.UIImageView;
|
|
|
|
source: imageSource.ImageSource;
|
|
}
|
|
} |