UNPKG

438 BTypeScriptView Raw
1export interface PublisherNucleusConfig {
2 /**
3 * Hostname (with https?://) of your instance of Nucleus
4 */
5 host: string;
6 /**
7 * App ID of your target application in Nucleus
8 */
9 appId: number;
10 /**
11 * Channel ID of your target application in Nucleus
12 */
13 channelId: string;
14 /**
15 * Authentication token for your app, you can find this on the Nucleus web UI
16 */
17 token: string;
18}