mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-03 12:10:45 +05:30
13 lines
504 B
TypeScript
13 lines
504 B
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
import { AuthContext } from 'app/services/authFlow';
|
|
|
|
export default class AbstractState {
|
|
resolve(context: AuthContext, payload: Record<string, any>): Promise<void> | void {}
|
|
goBack(context: AuthContext): void {
|
|
throw new Error('There is no way back');
|
|
}
|
|
reject(context: AuthContext, payload?: Record<string, any>): void {}
|
|
enter(context: AuthContext): Promise<void> | void {}
|
|
leave(context: AuthContext): void {}
|
|
}
|