EscolaLMS/Front

View on GitHub
src/components/Authentication/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { API } from '@escolalms/sdk/lib';

export type FormState =
  | { state: 'input' }
  | { state: 'loading' }
  | { state: 'disabled' }
  | { state: 'success'; message: string }
  | { state: 'error'; error?: API.DefaultResponseError };