10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
export interface State {
|
|
signined: boolean;
|
|
pending: boolean;
|
|
}
|
|
|
|
export const initialState: State = {
|
|
signined: false,
|
|
pending: false,
|
|
};
|