Skip to content

Commit 66d1958

Browse files
committed
fix: fixing up type exports
1 parent 702dd80 commit 66d1958

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

src/nodes/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import type { ContextTimed } from '@matrixai/contexts';
22
import type { NodeId, NodeIdString, NodeIdEncoded } from '../ids/types.js';
33
import type { Host, Hostname, Port } from '../network/types.js';
4-
import type { NodesAuthenticateConnectionMessage } from '../nodes/agent/types.js';
4+
import type { NodesAuthenticateConnectionMessage } from './agent/types.js';
55
import type { Opaque } from '../types.js';
6+
export type * as agentTypes from './agent/types.js';
67

78
/**
89
* Key indicating which space the NodeGraph is in

src/types.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
// eslint-disable-next-line no-restricted-imports -- Interim types for FileSystem
22
import type fs from 'node:fs';
3+
export type * from 'acl/types.js';
4+
export type * from 'audit/types.js';
5+
export type * from 'claims/types.js';
6+
export type * as clientTypes from 'client/types.js';
7+
export type * from 'discovery/types.js';
8+
export type * from 'gestalts/types.js';
9+
export type * from 'git/types.js';
10+
export type * from 'identities/types.js';
11+
export type * from 'ids/types.js';
12+
export type * from 'keys/types.js';
13+
export type * from 'network/types.js';
14+
export type * from 'nodes/types.js';
15+
export type * from 'notifications/types.js';
16+
export type * from 'schema/types.js';
17+
export type * from 'sessions/types.js';
18+
export type * from 'sigchain/types.js';
19+
export type * from 'status/types.js';
20+
export type * from 'tokens/types.js';
21+
export type * from 'vaults/types.js';
22+
export type * from 'workers/types.js';
323

424
/**
525
* Plain data dictionary

0 commit comments

Comments
 (0)