15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
import { RPCClientError } from '@loafer/ng-rpc';
|
|
import { Target } from '@overflow/commons-typescript/model/target';
|
|
|
|
export interface State {
|
|
error: RPCClientError | null;
|
|
pending: boolean;
|
|
target: Target | null;
|
|
}
|
|
|
|
export const initialState: State = {
|
|
error: null,
|
|
pending: false,
|
|
target: null,
|
|
};
|