14 lines
514 B
TypeScript
14 lines
514 B
TypeScript
import { MarkdownPowerPluginOptions } from "../shared/index.js";
|
|
|
|
//#region src/client/options.d.ts
|
|
declare const pluginOptions: MarkdownPowerPluginOptions;
|
|
declare const installed: {
|
|
dashjs: boolean;
|
|
hlsjs: boolean;
|
|
mpegtsjs: boolean;
|
|
};
|
|
declare const ART_PLAYER_SUPPORTED_VIDEO_TYPES: string[];
|
|
declare const INJECT_TIMELINE_KEY: symbol;
|
|
declare const INJECT_COLLAPSE_KEY: symbol;
|
|
//#endregion
|
|
export { ART_PLAYER_SUPPORTED_VIDEO_TYPES, INJECT_COLLAPSE_KEY, INJECT_TIMELINE_KEY, installed, pluginOptions }; |