UNPKG

react-native-firebase-compiled

Version:

A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto

26 lines (20 loc) 366 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; class VideoOptions { constructor() { this._props = { startMuted: true }; } build() { return this._props; } setStartMuted(muted = true) { this._props.startMuted = muted; return this; } } exports.default = VideoOptions;