-
Notifications
You must be signed in to change notification settings - Fork 132
/
index.ts
41 lines (37 loc) · 1.26 KB
/
index.ts
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
/**
* SPDX-License-Identifier: Apache-2.0
* Copyright 2019 FINOS FDC3 contributors - see NOTICE file
*/
import { DesktopAgent } from './api/DesktopAgent';
import * as BridgingTypes from './bridging/BridgingTypes';
export * from './context/ContextTypes';
//explicit overwrite of conflicting & equivalent export from ContextTypes
export {AppIdentifier} from './api/AppIdentifier';
export * from './api/AppIntent';
export * from './api/AppMetadata';
export * from './api/Channel';
export * from './api/ContextMetadata';
export * from './api/DesktopAgent';
export * from './api/DisplayMetadata';
export * from './api/Errors';
export * from './api/Icon';
export * from './api/Image';
export * from './api/ImplementationMetadata';
export * from './api/IntentMetadata';
export * from './api/IntentResolution';
export * from './api/Listener';
export * from './api/Methods';
export * from './api/PrivateChannel';
export * from './api/RecommendedChannels';
export * from './api/Types';
export * from './context/ContextType';
export * from './intents/Intents';
export * from './api/Events'
/* Workaround for conflicts between bridging types and API types
and prettier issue with `export * as`. */
export { BridgingTypes };
declare global {
interface Window {
fdc3: DesktopAgent;
}
}