mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
My IDE was screaming at me that commas were unacceptable here.. so I made it shut up 🤐 (#4641)
This commit is contained in:
committed by
Alexander Vakrilov
parent
14098d40db
commit
7eb9cbfcb0
@@ -282,17 +282,17 @@ export interface AndroidActivityRequestPermissionsEventData extends AndroidActiv
|
|||||||
/**
|
/**
|
||||||
* The request code.
|
* The request code.
|
||||||
*/
|
*/
|
||||||
requestCode: number,
|
requestCode: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Permissions
|
* The Permissions
|
||||||
*/
|
*/
|
||||||
permissions: Array<string>,
|
permissions: Array<string>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Granted.
|
* The Granted.
|
||||||
*/
|
*/
|
||||||
grantResults: Array<number>
|
grantResults: Array<number>;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user