UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

30 lines 657 B
export class VideoView extends View<HTMLElement> { /** * * @param {String|ObservedString} url * @param {String[]} classList * @param {*} [attributes] */ constructor(url: string | ObservedString, { classList, attributes }?: string[]); destroy(): void; /** * * @param {number} x * @param {number} y * @private */ private __setSize; /** * * @param {string} url * @private */ private __setSource; /** * @readonly * @type {boolean} */ readonly isVideoView: boolean; } import View from "../../View.js"; //# sourceMappingURL=VideoView.d.ts.map