UNPKG

@shockpkg/dir-projector

Version:

Package for creating Shockwave Director projectors

21 lines (20 loc) 506 B
import { ProjectorWindows } from '../projector/windows'; import { Bundle } from '../bundle'; /** * BundleWindows constructor. * * @param path Output path for the main application. */ export declare abstract class BundleWindows extends Bundle { /** * ProjectorWindows instance. */ abstract readonly projector: ProjectorWindows; constructor(path: string); /** * Main application file extension. * * @returns File extension. */ get extension(): string; }