barbar/vortigern

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

Summary

Maintainability
A
0 mins
Test Coverage
export interface ICounter {
  count: number;
}

export interface ICounterAction {
  type: string;
}