1/** 2 * Configuration for the Wisp client 3 * @typeParam Config 4 */ 5export type Config = { 6 /** The base domain URL with HTTPS protocol */ 7 domain: `https://${string}`, 8 /** Name of the client application */ 9 clientName: string 10};