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