Skip to content

Commit

Permalink
fix(types): Build properties are readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Oct 8, 2019
1 parent f960a3d commit 5f16d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/declarations/build-conditionals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ export interface Build extends Partial<BuildFeatures> {
}

export interface UserBuildConditionals {
isDev: boolean;
isBrowser: boolean;
readonly isDev: boolean;
readonly isBrowser: boolean;
}

0 comments on commit 5f16d81

Please sign in to comment.