2018-05-25 18:18:06 +09:00

13 lines
289 B
TypeScript

import { RPCClientError } from '@loafer/ng-rpc';
import { ProbeHost } from '@overflow/commons-typescript/model/probe';
export interface State {
error: RPCClientError | null;
probeHosts: ProbeHost[] | null;
}
export const initialState: State = {
error: null,
probeHosts: null,
};