Files
streamyfin/modules/mpv-player/src/MpvPlayerModule.ts
Alex Kim 36655bba43 init
2025-12-06 02:02:26 +11:00

12 lines
388 B
TypeScript

import { NativeModule, requireNativeModule } from "expo";
import { MpvPlayerModuleEvents } from "./MpvPlayer.types";
declare class MpvPlayerModule extends NativeModule<MpvPlayerModuleEvents> {
hello(): string;
setValueAsync(value: string): Promise<void>;
}
// This call loads the native module object from the JSI.
export default requireNativeModule<MpvPlayerModule>("MpvPlayer");