loader.ts 107 B

123
  1. export interface LoaderState {
  2. [key: string]: 'notFetched' | 'fetching' | 'fetched' | 'errorFetching';
  3. }