Files
NativeScript/camera/camera.d.ts
2015-03-03 10:34:40 +02:00

13 lines
271 B
TypeScript

/**
* Allows you to take pictrues with the device's camera.
*/
declare module "camera" {
import imageSource = require("image-source");
/**
* Take a photo using the camera.
*/
export function takePicture(): Promise<imageSource.ImageSource>;
}