Signal-Desktop/ts/util/index.ts

28 lines
802 B
TypeScript
Raw Normal View History

import * as GoogleChrome from './GoogleChrome';
import * as Registration from './registration';
2018-04-14 02:14:58 +00:00
import { arrayBufferToObjectURL } from './arrayBufferToObjectURL';
import { combineNames } from './combineNames';
2019-09-26 19:56:31 +00:00
import { createBatcher } from './batcher';
import { createWaitBatcher } from './waitBatcher';
import { hasExpired } from './hasExpired';
2018-10-04 01:12:42 +00:00
import { isFileDangerous } from './isFileDangerous';
2019-01-14 21:49:58 +00:00
import { makeLookup } from './makeLookup';
import { migrateColor } from './migrateColor';
import { missingCaseError } from './missingCaseError';
import * as zkgroup from './zkgroup';
2018-10-04 01:12:42 +00:00
export {
arrayBufferToObjectURL,
combineNames,
2019-09-26 19:56:31 +00:00
createBatcher,
createWaitBatcher,
2018-10-04 01:12:42 +00:00
GoogleChrome,
hasExpired,
2018-10-04 01:12:42 +00:00
isFileDangerous,
2019-01-14 21:49:58 +00:00
makeLookup,
2018-10-04 01:12:42 +00:00
migrateColor,
missingCaseError,
Registration,
zkgroup,
2018-10-04 01:12:42 +00:00
};