5 lines
96 B
TypeScript
5 lines
96 B
TypeScript
export interface IErrorAction<ActionType extends string> {
|
|
error: Error,
|
|
type: ActionType
|
|
}
|