UNPKG

expo-print

Version:

Provides an API for iOS (AirPrint) and Android printing functionality.

18 lines 363 B
export default { get name() { return 'ExponentPrint'; }, get Orientation() { return { portrait: 'portrait', landscape: 'landscape', }; }, async print() { window.print(); }, async printToFileAsync() { window.print(); }, }; //# sourceMappingURL=ExponentPrint.web.js.map