system-praktyk-front/src/state/actions/base.ts
2020-07-13 20:41:38 +02:00

4 lines
76 B
TypeScript

export interface Action<TType extends string> {
readonly type: TType;
}