13 lines
289 B
TypeScript
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,
|
|
};
|