Skip to content

Commit

Permalink
fix(sqlite): fix SQLiteDatabaseConfig interface
Browse files Browse the repository at this point in the history
closes #1280
  • Loading branch information
ihadeed committed Mar 28, 2017
1 parent bc364d1 commit ea88c9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/@ionic-native/plugins/sqlite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export interface SQLiteDatabaseConfig {
/**
* Location of the database. Example: 'default'
*/
location: string;
location?: string;
/**
* iOS Database Location. Example: 'Library'
*/
iosDatabaseLocation: string;
iosDatabaseLocation?: string;
}

/**
Expand Down

0 comments on commit ea88c9e

Please sign in to comment.