Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
96
fork

Configure Feed

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

at 020b095efc941c73dc733d953cc502d4bc5102ea 12 lines 287 B view raw
1import type { BlobRef } from "@atproto/api"; 2 3/** 4 * Configuration for the Wisp client 5 * @typeParam Config 6 */ 7export type Config = { 8 /** The base domain URL with HTTPS protocol */ 9 domain: `https://${string}`, 10 /** Name of the client application */ 11 clientName: string 12};