barbar/vortigern

View on GitHub
src/app/models/stars.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IStars {
  isFetching?: boolean;
  count?: number;
  error?: boolean;
  message?: any;
}

export interface IStarsAction {
  type: string;
  payload?: {
    count?: number;
    message?: any;
  };
}