-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f989de
commit 05e751c
Showing
2 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,26 @@ | ||
import common = require("./drawingpad-common"); | ||
export declare class DrawingPad extends common.DrawingPad { | ||
private _android; | ||
android: any; | ||
ios: any; | ||
_nativeView: any; | ||
_createUI(): void; | ||
|
||
/** | ||
* Returns native image. | ||
*/ | ||
getDrawing(): Promise<any>; | ||
|
||
/** | ||
* Returns a bitmap with a transparent background *** ANDROID ONLY *** | ||
*/ | ||
getTransparentDrawing(): Promise<any>; | ||
|
||
/** | ||
* Returns a Scalable Vector Graphics document *** ANDROID ONLY *** | ||
*/ | ||
getDrawingSvg(): Promise<any>; | ||
|
||
/** | ||
* Clears the drawing from the DrawingPad. | ||
*/ | ||
clearDrawing(): any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters