This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

update identity resolver interface

+2
+2
src/modules/atproto/domain/services/IIdentityResolutionService.ts
··· 1 1 import { Result } from 'src/shared/core/Result'; 2 2 import { DID } from '../DID'; 3 3 import { DIDOrHandle } from '../DIDOrHandle'; 4 + import { Handle } from '../Handle'; 4 5 5 6 export interface IIdentityResolutionService { 6 7 resolveToDID(identifier: DIDOrHandle): Promise<Result<DID>>; 8 + resolveToHandle(identifier: DIDOrHandle): Promise<Result<Handle>>; 7 9 }