Skip to content

Commit

Permalink
fixed d.ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
viskin committed Feb 25, 2017
1 parent c4ea329 commit fa11c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhotoLibrary.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ declare module PhotoLibraryCordova {

export interface Plugin {

getLibrary(success: (result: { chunk: LibraryItem[], isLastChunk: boolean }) => void, error: (err: any) => void, options?: GetLibraryOptions): void;
getLibrary(success: (chunk: { library: LibraryItem[], isLastChunk: boolean }) => void, error: (err: any) => void, options?: GetLibraryOptions): void;

requestAuthorization(success: () => void, error: (err: any) => void, options?: RequestAuthorizationOptions): void;

Expand Down

0 comments on commit fa11c70

Please sign in to comment.