Skip to content

Instantly share code, notes, and snippets.

@xiongemi
Last active May 25, 2020 01:19
Show Gist options
  • Select an option

  • Save xiongemi/7a61e5e00e0f1c45d2e24fb70d66b655 to your computer and use it in GitHub Desktop.

Select an option

Save xiongemi/7a61e5e00e0f1c45d2e24fb70d66b655 to your computer and use it in GitHub Desktop.
interface file for form state in ngxs
import { ValidationErrors } from '@angular/forms';
export interface FormState<T> {
model: T;
dirty: boolean;
status: string;
errors: ValidationErrors | null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment