19 lines
500 B
TypeScript
19 lines
500 B
TypeScript
|
import { RPCClientError } from '@loafer/ng-rpc/protocol';
|
||
|
|
||
|
import { Probe } from '../../model';
|
||
|
|
||
|
import { createEntityAdapter, EntityAdapter, EntityState } from '@ngrx/entity';
|
||
|
|
||
|
export interface State extends EntityState<Probe> {
|
||
|
error: RPCClientError | null;
|
||
|
isPending: boolean;
|
||
|
probe: Probe | null;
|
||
|
}
|
||
|
export const adapter: EntityAdapter<Probe> = createEntityAdapter<Probe>();
|
||
|
export const initialState: State = adapter.getInitialState({
|
||
|
error: null,
|
||
|
isPending: false,
|
||
|
probe: null,
|
||
|
});
|
||
|
|