Skip to content

Commit 9d8d743

Browse files
committed
fixup! type imports
1 parent 133fe49 commit 9d8d743

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/pass-style/src/makeTagged.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ import { Fail } from '@endo/errors';
44
import { PASS_STYLE } from './passStyle-helpers.js';
55
import { assertPassable } from './passStyleOf.js';
66

7+
/**
8+
* @import {Passable,CopyTagged} from './types.js'
9+
*/
10+
711
const { create, prototype: objectPrototype } = Object;
812

913
/**
1014
* @template {string} T
11-
* @template {import('./types.js').Passable} P
15+
* @template {Passable} P
1216
* @param {T} tag
1317
* @param {P} payload
14-
* @returns {import('./types.js').CopyTagged<T,P>}
18+
* @returns {CopyTagged<T,P>}
1519
*/
1620
export const makeTagged = (tag, payload) => {
1721
typeof tag === 'string' ||

0 commit comments

Comments
 (0)