MCPcopy
hub / github.com/spicetify/cli / Content

Interface Content

globals.d.ts:1346–1358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1344 */
1345 namespace PopupModal {
1346 interface Content {
1347 title: string;
1348 /**
1349 * You can specify a string for simple text display
1350 * or a HTML element for interactive config/setting menu,
1351 * or a React JSX element for React-based components
1352 */
1353 content: string | Element | React.JSX.Element;
1354 /**
1355 * Bigger window
1356 */
1357 isLarge?: boolean;
1358 }
1359
1360 function display(e: Content): void;
1361 function hide(): void;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected