-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathindex.ts
More file actions
27 lines (22 loc) · 1022 Bytes
/
index.ts
File metadata and controls
27 lines (22 loc) · 1022 Bytes
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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
export { memoizeFnAll } from './memoizeFnAll';
export {
fromFlatCommunicationIdentifier,
toFlatCommunicationIdentifier,
_toCommunicationIdentifier,
_isValidIdentifier
} from './identifier';
export { _getApplicationId } from './telemetry';
export { _formatString } from './localizationUtils';
export { _safeJSONStringify } from './safeStringify';
export { _convertRemToPx, _preventDismissOnEvent, _generateUniqueId } from './common';
export type { Common, CommonProperties } from './commonProperties';
export type { CallbackType, FunctionWithKey } from './memoizeFnAll';
export type { AreEqual, AreParamEqual, AreTypeEqual } from './areEqual';
export type { MessageStatus } from './MessageStatus';
export type { _IObjectMap } from './localizationUtils';
export { _MAX_EVENT_LISTENERS } from './constants';
export { _pxToRem } from './cssUtils';
export { _logEvent } from './logEvent';
export type { TelemetryEvent } from './logEvent';