16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
|
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,
|
||
|
};
|