forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexBrowser.ts
More file actions
38 lines (33 loc) · 1.09 KB
/
indexBrowser.ts
File metadata and controls
38 lines (33 loc) · 1.09 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
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
// Entrypoint for browser-specific code in the package.
// (See 'Isomorphic Code' section in the package README.md.)
export {
bufferToString,
isArrayBuffer,
IsoBuffer,
stringToBuffer,
Uint8ArrayToString,
} from "./bufferBrowser.js";
export { gitHashFile, hashFile } from "./hashFileBrowser.js";
export { fromBase64ToUtf8, fromUtf8ToBase64, toUtf8 } from "./base64EncodingBrowser.js";
export { Uint8ArrayToArrayBuffer } from "./bufferShared.js";
export { EventEmitter } from "./eventEmitter.cjs";
export { performanceNow } from "./performanceIsomorphic.js";
export { type ITraceEvent, Trace } from "./trace.js";
export {
type EventEmitterEventType,
TypedEventEmitter,
type TypedEventTransform,
} from "./typedEventEmitter.js";
export { createEmitter } from "./events/index.js";
export {
type FluidLayer,
checkLayerCompatibility,
type LayerCompatCheckResult,
type ILayerCompatDetails,
type IProvideLayerCompatDetails,
type ILayerCompatSupportRequirements,
} from "./layerCompat.js";