You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
457 B
21 lines
457 B
const platformModule = {
|
|
get name() {
|
|
return 'ExponentFileSystem';
|
|
},
|
|
get documentDirectory() {
|
|
return null;
|
|
},
|
|
get cacheDirectory() {
|
|
return null;
|
|
},
|
|
get bundledAssets() {
|
|
return null;
|
|
},
|
|
get bundleDirectory() {
|
|
return null;
|
|
},
|
|
addListener(eventName) { },
|
|
removeListeners(count) { },
|
|
};
|
|
export default platformModule;
|
|
//# sourceMappingURL=ExponentFileSystemShim.js.map
|