mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-24 11:08:16 +08:00
37 lines
1005 B
TypeScript
37 lines
1005 B
TypeScript
import type { MarkdownPowerPluginOptions } from '../shared/index.js'
|
|
|
|
declare const __MD_POWER_INJECT_OPTIONS__: MarkdownPowerPluginOptions
|
|
declare const __MD_POWER_DASHJS_INSTALLED__: boolean
|
|
declare const __MD_POWER_HLSJS_INSTALLED__: boolean
|
|
declare const __MD_POWER_MPEGTSJS_INSTALLED__: boolean
|
|
|
|
export const pluginOptions = __MD_POWER_INJECT_OPTIONS__
|
|
|
|
export const installed = {
|
|
dashjs: __MD_POWER_DASHJS_INSTALLED__,
|
|
hlsjs: __MD_POWER_HLSJS_INSTALLED__,
|
|
mpegtsjs: __MD_POWER_MPEGTSJS_INSTALLED__,
|
|
}
|
|
|
|
export const ART_PLAYER_SUPPORTED_VIDEO_TYPES = ['mp4', 'mp3', 'webm', 'ogg']
|
|
|
|
if (installed.dashjs) {
|
|
ART_PLAYER_SUPPORTED_VIDEO_TYPES.push('mpd', 'dash')
|
|
}
|
|
|
|
if (installed.hlsjs) {
|
|
ART_PLAYER_SUPPORTED_VIDEO_TYPES.push('m3u8', 'hls')
|
|
}
|
|
|
|
if (installed.mpegtsjs) {
|
|
ART_PLAYER_SUPPORTED_VIDEO_TYPES.push('ts', 'flv')
|
|
}
|
|
|
|
export const INJECT_TIMELINE_KEY = Symbol(
|
|
__VUEPRESS_DEV__ ? 'timeline' : '',
|
|
)
|
|
|
|
export const INJECT_COLLAPSE_KEY = Symbol(
|
|
__VUEPRESS_DEV__ ? 'collapse' : '',
|
|
)
|