Created
May 25, 2020 01:20
-
-
Save xiongemi/881960f2a5d80e39a9c5c17fde873a91 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { FormState } from './form-state.interface'; | |
export const initFormState: FormState<any> = { | |
model: undefined, | |
dirty: false, | |
status: '', | |
errors: null | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment