Skip to content

Commit

Permalink
add versions to imports
Browse files Browse the repository at this point in the history
  • Loading branch information
UppaJung committed Sep 22, 2024
1 parent 88f815b commit 8634a15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/DebuggerEvent.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {Protocol as DevToolsProtocol} from 'npm:devtools-protocol';
import type {Protocol as DevToolsProtocol} from 'npm:devtools-protocol@0.0.1358005';
export type {DevToolsProtocol};

type DebuggerPageEventNameAndObject =
Expand Down
2 changes: 1 addition & 1 deletion lib/cookies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// https://github.com/sitespeedio/chrome-har/blob/5b076f8c8e578e929670761dcc31345e4e87103c/index.js

import type {DevToolsProtocol} from "./types.ts";
import {Cookie} from "npm:tough-cookie";
import {Cookie} from "npm:tough-cookie@5.0.0";
import type {NpmHarFormatTypes} from './types.ts';

export const networkCookieToHarFormatCookie = ({expires, ...rest}: DevToolsProtocol.Network.Cookie): NpmHarFormatTypes.Cookie => ({
Expand Down
2 changes: 1 addition & 1 deletion lib/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type {DevToolsProtocol} from './DebuggerEvent.ts';
import type * as NpmHarFormatTypes from 'npm:@types/har-format';
import type * as NpmHarFormatTypes from 'npm:@types/har-format@1.2.15';
import type { DebuggerEventOrMetaEvent, DebuggerNetworkHttpEventName, DebuggerNetworkMetaEventName, DebuggerPageEventName } from "./DebuggerEvent.ts";

export type {DevToolsProtocol, NpmHarFormatTypes};
Expand Down

0 comments on commit 8634a15

Please sign in to comment.