16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
import { RPCClientError } from '@loafer/ng-rpc';
|
|
import { ProbeHost } from '@overflow/commons-typescript/model/probe';
|
|
|
|
export interface State {
|
|
error: RPCClientError | null;
|
|
isPending: boolean;
|
|
probeHost: ProbeHost | null;
|
|
}
|
|
|
|
export const initialState: State = {
|
|
error: null,
|
|
isPending: false,
|
|
probeHost: null,
|
|
};
|
|
|