Skip to content

Commit 64ca262

Browse files
Julianna Langstonkriswest
authored andcommitted
Explicit type imports
1 parent 6d047d0 commit 64ca262

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/fdc3-standard/src/api/Channel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ContextHandler } from './Types.js';
88
import { DisplayMetadata } from './DisplayMetadata.js';
99
import { Listener } from './Listener.js';
1010
import { EventHandler } from './Events.js';
11-
import { AppProvidableContextMetadata } from './ContextMetadata.js';
11+
import type { AppProvidableContextMetadata } from './ContextMetadata.js';
1212

1313
/**
1414
* Represents a context channel that applications can use to send and receive

packages/fdc3-standard/src/api/DesktopAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { AppMetadata } from './AppMetadata.js';
1616
import { Intent } from '../intents/Intents.js';
1717
import { ContextType } from '../context/ContextType.js';
1818
import { EventHandler, FDC3EventTypes } from './Events.js';
19-
import { AppProvidableContextMetadata } from './ContextMetadata.js';
19+
import type { AppProvidableContextMetadata } from './ContextMetadata.js';
2020

2121
/**
2222
* A Desktop Agent is a desktop component (or aggregate of components) that serves as a

packages/fdc3-standard/src/api/Types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import { Context } from '@finos/fdc3-context';
77
import { Channel } from './Channel.js';
8-
import { DesktopAgentProvidableContextMetadata } from './ContextMetadata.js';
8+
import type { DesktopAgentProvidableContextMetadata } from './ContextMetadata.js';
99

1010
/**
1111
* Describes a callback that handles a context event.

0 commit comments

Comments
 (0)