23 lines
659 B
TypeScript
23 lines
659 B
TypeScript
import { RPCClientError } from '@loafer/ng-rpc';
|
|
|
|
import { DiscoveryStartInfo } from '@overflow/commons-typescript/model/discovery';
|
|
|
|
export interface State {
|
|
isStart: boolean;
|
|
error: RPCClientError | null;
|
|
isPending: boolean;
|
|
discoveryStartInfo: DiscoveryStartInfo | null;
|
|
}
|
|
|
|
export const initialState: State = {
|
|
isStart: false,
|
|
error: null,
|
|
isPending: false,
|
|
discoveryStartInfo: null,
|
|
};
|
|
|
|
export const isStart = (state: State) => state.isStart;
|
|
export const getDiscoveryStartInfo = (state: State) => state.discoveryStartInfo;
|
|
export const getError = (state: State) => state.error;
|
|
export const isPending = (state: State) => state.isPending;
|