web-dave / angular-starter-v2

6 stars 3 forks source link

setup action #32

Open web-dave opened 7 years ago

web-dave commented 7 years ago
web-dave commented 7 years ago

store.ts

...
export const FORM_DIRTY = { type: 'FORM_DIRTY' }
export const FORM_PRISTINE = { type: 'FORM_PRISTINE' }
export interface IAppState {
 formdirty: boolean;
}

export const appState: IAppState = {
 formdirty: false
}