Prefix core module imports with node:

This commit is contained in:
absidue
2021-10-28 19:40:19 +02:00
parent a13e588246
commit 90867b9430
9 changed files with 17 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
import { request, request_stream } from '../Request';
import { Readable } from 'stream';
import { IncomingMessage } from 'http';
import { Readable } from 'node:stream';
import { IncomingMessage } from 'node:http';
import { StreamType } from '../YouTube/stream';
import { Timer } from '../YouTube/classes/LiveStream';

View File

@@ -1,4 +1,4 @@
import fs from 'fs';
import fs from 'node:fs';
import { StreamType } from '../YouTube/stream';
import { request } from '../Request';
import { SoundCloudPlaylist, SoundCloudTrack, SoundCloudTrackFormat, Stream } from './classes';