File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ios-device-lib" ,
3
- "version" : " 0.5.0 " ,
3
+ "version" : " 0.5.1 " ,
4
4
"description" : " " ,
5
5
"types" : " ./typings/ios-device-lib.d.ts" ,
6
6
"main" : " index.js" ,
Original file line number Diff line number Diff line change @@ -49,8 +49,9 @@ declare global {
49
49
interface IDeleteFileData extends IAppDevice , IDestination {
50
50
}
51
51
52
- interface IDdiApplicationData extends IAppDevice {
52
+ interface IIOSApplicationData extends IAppDevice {
53
53
ddi : string ;
54
+ waitForDebugger ?: string ;
54
55
}
55
56
56
57
interface IPostNotificationData extends IDeviceId {
@@ -139,8 +140,8 @@ declare global {
139
140
postNotification ( postNotificationArray : IPostNotificationData [ ] ) : Promise < IDeviceResponse > [ ] ;
140
141
awaitNotificationResponse ( awaitNotificationResponseArray : IAwaitNotificatioNResponseData [ ] ) : Promise < IDeviceResponse > [ ] ;
141
142
apps ( deviceIdentifiers : string [ ] ) : Promise < IDeviceAppInfo > [ ] ;
142
- start ( startArray : IDdiApplicationData [ ] ) : Promise < IDeviceResponse > [ ] ;
143
- stop ( stopArray : IDdiApplicationData [ ] ) : Promise < IDeviceResponse > [ ] ;
143
+ start ( startArray : IIOSApplicationData [ ] ) : Promise < IDeviceResponse > [ ] ;
144
+ stop ( stopArray : IIOSApplicationData [ ] ) : Promise < IDeviceResponse > [ ] ;
144
145
startDeviceLog ( deviceIdentifiers : string [ ] ) : void ;
145
146
connectToPort ( connectToPortArray : IConnectToPortData [ ] ) : Promise < IConnectToPortResponse > [ ] ;
146
147
dispose ( signal ?: string ) : void ;
You can’t perform that action at this time.
0 commit comments