A social knowledge tool for researchers built on ATProto
at development 9 lines 282 B view raw
1import { AuthResult } from 'src/modules/user/application/services/IOAuthProcessor'; 2import { Result } from 'src/shared/core/Result'; 3 4export interface IAppPasswordProcessor { 5 processAppPassword( 6 identifier: string, 7 appPassword: string, 8 ): Promise<Result<AuthResult>>; 9}