ahoym/redesert

View on GitHub
src/actions/type-definitions.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Meta = {
  referenceId: string | number;
};

export type Action = {
  readonly type: string;
  readonly payload?: any;
  readonly errors?: object;
  meta?: Meta;
};