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 1dfa367bf1a778153400d23a275faedfc31fedc4 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};