UNPKG

react-native-executorch

Version:

An easy way to run AI models in react native with ExecuTorch

14 lines (13 loc) 459 B
"use strict"; import { StyleTransferNativeModule } from '../../native/RnExecutorchModules'; import { BaseModule } from '../BaseModule'; export class StyleTransferModule extends BaseModule { static nativeModule = StyleTransferNativeModule; static async load(modelSource) { return await super.load(modelSource); } static async forward(input) { return await this.nativeModule.forward(input); } } //# sourceMappingURL=StyleTransferModule.js.map