File tree 3 files changed +6
-6
lines changed
packages/node-experimental/src
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 27
27
*/
28
28
29
29
/* eslint-disable jsdoc/require-jsdoc */
30
- import * as http from 'http' ;
31
- import * as https from 'https' ;
30
+ import * as http from 'node: http' ;
31
+ import * as https from 'node: https' ;
32
32
import type { Readable } from 'stream' ;
33
33
34
34
export type ThenableRequest = http . ClientRequest & {
Original file line number Diff line number Diff line change 1
- import type { ClientRequest , IncomingHttpHeaders , RequestOptions as HTTPRequestOptions } from 'http' ;
2
- import type { RequestOptions as HTTPSRequestOptions } from 'https' ;
1
+ import type { ClientRequest , IncomingHttpHeaders , RequestOptions as HTTPRequestOptions } from 'node: http' ;
2
+ import type { RequestOptions as HTTPSRequestOptions } from 'node: https' ;
3
3
4
4
export type HTTPModuleRequestOptions = HTTPRequestOptions | HTTPSRequestOptions | string | URL ;
5
5
Original file line number Diff line number Diff line change 1
- import * as http from 'http' ;
2
- import * as https from 'https' ;
1
+ import * as http from 'node: http' ;
2
+ import * as https from 'node: https' ;
3
3
import { Readable } from 'stream' ;
4
4
import { createGzip } from 'zlib' ;
5
5
import { createTransport } from '@sentry/core' ;
You can’t perform that action at this time.
0 commit comments