UNPKG

@shockpkg/dir-projector

Version:

Package for creating Shockwave Director projectors

24 lines (23 loc) 436 B
/** * Projector constructor. */ export declare abstract class Projector { /** * Set the nobrowse option on mounted disk images. */ nobrowse: boolean; /** * Output path. */ readonly path: string; /** * Projector constructor. * * @param path Output path. */ constructor(path: string); /** * Write out the projector. */ abstract write(): Promise<void>; }