2018-05-24 15:44:13 +09:00
|
|
|
import { RPCClientError } from '@loafer/ng-rpc';
|
2018-05-02 17:09:39 +09:00
|
|
|
import { ProbeHost } from '@overflow/commons-typescript/model/probe';
|
2018-04-25 18:04:47 +09:00
|
|
|
|
|
|
|
export interface State {
|
|
|
|
error: RPCClientError | null;
|
|
|
|
isPending: boolean;
|
|
|
|
probeHost: ProbeHost | null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const initialState: State = {
|
|
|
|
error: null,
|
|
|
|
isPending: false,
|
|
|
|
probeHost: null,
|
|
|
|
};
|
|
|
|
|