UNPKG

377 BJavaScriptView Raw
1/**
2 * Projector object.
3 */
4export class Projector {
5 /**
6 * Set the nobrowse option on mounted disk images.
7 */
8 nobrowse = false;
9
10 /**
11 * Output path.
12 */
13
14 /**
15 * Projector constructor.
16 *
17 * @param path Output path.
18 */
19 constructor(path) {
20 this.path = path;
21 }
22
23 /**
24 * Write out the projector.
25 */
26}
27//# sourceMappingURL=projector.mjs.map
\No newline at end of file