stomp-js / stompjs

Javascript and Typescript Stomp client for Web browsers and node.js apps
Apache License 2.0
738 stars 80 forks source link

Typescript Import error #612

Open steklopod opened 7 months ago

steklopod commented 7 months ago

node_modules/.pnpm/@stomp+stompjs@7.0.0/node_modules/@stomp/stompjs/src/i-message.ts:1:10 - error TS1484: 'IFrame' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled.

1 import { IFrame } from './i-frame.js';

I think it should be:

import type { IFrame } from './i-frame.js';
import type { IMessage } from './i-message.js';

Instead of:

import { IFrame } from './i-frame.js';
import { IMessage } from './i-message.js';
Снимок экрана 2023-11-08 в 20 55 19