import { RESTClientError } from '@loafer/ng-rest/protocol'; export interface State { secretKey: string; keyURI: string; error: RESTClientError | null; pending: boolean; } export const initialState: State = { secretKey: null, keyURI: null, error: null, pending: false, };