fix: export 'dataSerialize' from utils (#9909)

This commit is contained in:
Dimitris-Rafail Katsampas
2022-05-15 23:11:15 +03:00
committed by Nathan Walker
parent 45dcada01a
commit a85a72d961
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ import { Device } from '../platform';
import { FileSystemAccess } from '../file-system/file-system-access'; import { FileSystemAccess } from '../file-system/file-system-access';
import { Trace } from '../trace'; import { Trace } from '../trace';
export { ad, iOSNativeHelper } from './native-helper'; export { ad, dataDeserialize, dataSerialize, iOSNativeHelper } from './native-helper';
export * from './utils-common'; export * from './utils-common';
export { Source } from './debug'; export { Source } from './debug';

View File

@ -1,7 +1,7 @@
import { iOSNativeHelper } from './native-helper'; import { iOSNativeHelper } from './native-helper';
import { Trace } from '../trace'; import { Trace } from '../trace';
export { iOSNativeHelper } from './native-helper'; export { dataDeserialize, dataSerialize, iOSNativeHelper } from './native-helper';
export * from './utils-common'; export * from './utils-common';
export { Source } from './debug'; export { Source } from './debug';