-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathindex.ts
More file actions
42 lines (38 loc) · 1.32 KB
/
index.ts
File metadata and controls
42 lines (38 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* SPDX-License-Identifier: Apache-2.0
* Copyright 2019 FINOS FDC3 contributors - see NOTICE file
*/
import { DesktopAgent } from './api/DesktopAgent.js';
//explicit overwrite of conflicting & equivalent export from ContextTypes
export { AppIdentifier } from './api/AppIdentifier.js';
export * from './api/AppIntent.js';
export * from './api/AppMetadata.js';
export * from './api/Channel.js';
export * from './api/ContextMetadata.js';
export * from './api/DesktopAgent.js';
export * from './api/DisplayMetadata.js';
export * from './api/Errors.js';
export * from './api/GetAgent.js';
export * from './api/Icon.js';
export * from './api/Image.js';
export * from './api/ImplementationMetadata.js';
export * from './api/IntentMetadata.js';
export * from './api/IntentResolution.js';
export * from './api/Listener.js';
export * from './api/Methods.js';
export * from './api/PrivateChannel.js';
export * from './api/RecommendedChannels.js';
export * from './api/Types.js';
export * from './api/Events.js';
export * from './api/GetAgent.js';
export * from './context/ContextType.js';
export * from './intents/Intents.js';
export * from './ui/IntentResolver.js';
export * from './ui/ChannelSelector.js';
export * from './ui/Connectable.js';
export const FDC3_VERSION = '2.2';
declare global {
interface Window {
fdc3?: DesktopAgent;
}
}