Skip to content

Commit

Permalink
feat(theme): add environment schema definition
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandg7 committed Mar 31, 2021
1 parent e358c3b commit 8bfc9dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export interface EnvironmentSchema {
production: boolean;
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export const environment = {
import { EnvironmentSchema } from './environment-schema';

export const environment: EnvironmentSchema = {
production: true,
};
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export const environment = {
import { EnvironmentSchema } from './environment-schema';

export const environment: EnvironmentSchema = {
production: false,
};

0 comments on commit 8bfc9dd

Please sign in to comment.