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 ad393298bc8c5e25b37e68d6ec20cf5674053864 10 lines 270 B view raw
1/** 2 * Configuration for the Wisp client 3 * @typeParam Config 4 */ 5export type Config = { 6 /** The base domain URL with HTTP or HTTPS protocol */ 7 domain: `http://${string}` | `https://${string}`, 8 /** Name of the client application */ 9 clientName: string 10};