@foxglove/ws-protocol-examples
Version:
Foxglove WebSocket protocol examples
7 lines • 316 B
JavaScript
export default async function boxen(...args) {
// Hack to import ESM-only module: https://github.com/microsoft/TypeScript/issues/43329
// eslint-disable-next-line no-eval
const importedBoxen = (await eval("import('boxen')")).default;
return importedBoxen(...args);
}
//# sourceMappingURL=boxen.js.map