export abstract class ISessionAuthRepository { abstract init(sessionName?: string): Promise; abstract clean(sessionName: string): Promise; }