1 2 3 4 5 6 7 8
import { Video as BaseVideo, type FrameTime, type InitConfig } from '$/lib/Player/Video'; import * as THREE from 'three'; export default abstract class ThreeVideo extends BaseVideo { public async init(config: InitConfig): Promise<void> { } }