nuxt-restream
Version:
Secure media content inside your Nuxt app
27 lines (24 loc) • 610 B
TypeScript
import * as _nuxt_schema from '@nuxt/schema';
interface ModuleOptions {
/**
* Base route that will be used for restream api
* @default 'restream'
* @type string
*/
apiRouteName: string;
/**
* Firebase admin options
* @default {}
* @type Record<string, string>
*/
credential?: string;
/**
* Firebase storage bucket url
* @default undefined
* @example example.appspot.com
* @type string
*/
storage?: string;
}
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
export { ModuleOptions, _default as default };