Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

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

at main 20 lines 369 B view raw
1// TS6.0 enables noUncheckedSideEffectImports 2declare module '*.css' 3 4declare module 'psl' { 5 export type ParsedDomain = { 6 input: string 7 tld: string | null 8 sld: string | null 9 domain: string | null 10 subdomain: string | null 11 listed: boolean 12 error?: Error 13 } 14 15 const psl: { 16 parse(domain: string): ParsedDomain 17 } 18 19 export default psl 20}