A social knowledge tool for researchers built on ATProto
at development 10 lines 309 B view raw
1import { AtpSessionData } from '@atproto/api'; 2import { Result } from 'src/shared/core/Result'; 3 4export interface IAppPasswordSessionService { 5 getSession(did: string): Promise<Result<AtpSessionData>>; 6 createSession( 7 identifier: string, 8 appPassword: string, 9 ): Promise<Result<AtpSessionData>>; 10}