Skip to content

Commit

Permalink
fix(diagnostic): add missing types
Browse files Browse the repository at this point in the history
closes #905
  • Loading branch information
ihadeed committed Dec 27, 2016
1 parent c44fb75 commit 1841220
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/plugins/diagnostic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ export class Diagnostic {

@CordovaProperty
static permissionStatus: {
GRANTED;
DENIED;
NOT_REQUESTED;
DENIED_ALWAYS;
RESTRICTED;
GRANTED_WHEN_IN_USE;
GRANTED: string;
DENIED: string;
NOT_REQUESTED: string;
DENIED_ALWAYS: string;
RESTRICTED: string;
GRANTED_WHEN_IN_USE: string;
};

static locationAuthorizationMode = {
Expand Down

0 comments on commit 1841220

Please sign in to comment.