member_webapp/src/packages/probe/store/remove/remove.state.ts
2018-04-29 19:43:14 +09:00

16 lines
299 B
TypeScript

import { RPCClientError } from '@loafer/ng-rpc/protocol';
import { Probe } from '../../model';
export interface State {
error: RPCClientError | null;
isPending: boolean;
succeed: boolean | null;
}
export const initialState: State = {
error: null,
isPending: false,
succeed: null,
};