this repo has no description
atproto bluesky typescript express

idk what else

+2 -8
+2 -8
src/lib/resolver.ts
··· 25 25 return null; 26 26 } 27 27 28 - export async function byHTTP( 29 - domain: string, 30 - secure: boolean = true, 31 - ): Promise<string | any> { 28 + export async function byHTTP(domain: string, secure: boolean = true): Promise<string | any> { 32 29 const agent = new Agent({ keepAliveTimeout: 10000 }); 33 30 setGlobalDispatcher(agent); 34 31 ··· 54 51 } 55 52 } 56 53 57 - export async function byPLC( 58 - did: string, 59 - endpoint: string = "https://plc.directory", 60 - ) { 54 + export async function byPLC(did: string, endpoint: string = "https://plc.directory"): Promise<any> { 61 55 const agent = new Agent({ keepAliveTimeout: 10000 }); 62 56 setGlobalDispatcher(agent); 63 57