Skip to content

Commit

Permalink
syntax: fixing imports
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tegefaulkes authored and amydevs committed May 23, 2024
1 parent 52416ce commit 97dad8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/identities/types.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import type { POJO } from '../types';
import type { POJO, Opaque } from '../types';
import type {
ProviderId,
IdentityId,
ProviderIdentityClaimId,
} from '../ids/types';
import type { SignedClaim } from '../claims/types';
import type { ClaimLinkIdentity } from '../claims/payloads';
import type { Opaque } from 'encryptedfs';

/**
* Identity data contains key details about the
Expand Down
4 changes: 2 additions & 2 deletions tests/discovery/Discovery.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { IdentityId, ProviderId } from '@/identities/types';
import type { Host } from '@/network/types';
import type { Key } from '@/keys/types';
import type { NodeId } from '../../src/ids';
import type { NodeId } from '@/ids';
import type { AgentServerManifest } from '@/nodes/agent/handlers';
import type { DiscoveryQueueInfo } from '@/discovery/types';
import type { ClaimLinkIdentity } from '@/claims/payloads/claimLinkIdentity';
Expand Down Expand Up @@ -31,10 +31,10 @@ import * as nodesUtils from '@/nodes/utils';
import * as discoveryErrors from '@/discovery/errors';
import * as keysUtils from '@/keys/utils';
import * as gestaltsUtils from '@/gestalts/utils';
import { encodeProviderIdentityId } from '@/ids';
import * as testNodesUtils from '../nodes/utils';
import TestProvider from '../identities/TestProvider';
import 'ix/add/asynciterable-operators/toarray';
import { encodeProviderIdentityId } from '../../src/ids';
import { createTLSConfig } from '../utils/tls';

describe('Discovery', () => {
Expand Down

0 comments on commit 97dad8b

Please sign in to comment.