diff --git a/src/projector.ts b/src/projector.ts index b55202e..56b080c 100644 --- a/src/projector.ts +++ b/src/projector.ts @@ -41,53 +41,39 @@ export interface IIncludeXtras { export abstract class Projector { /** * Make a Shockwave projector. - * - * @default false */ - public shockwave: boolean = false; + public shockwave = false; /** * Splash image file. - * - * @default null */ public splashImageFile: string | null = null; /** * Splash image data. - * - * @default null */ public splashImageData: Readonly | null = null; /** * Lingo file. - * - * @default null */ public lingoFile: string | null = null; /** * Lingo data. - * - * @default null */ public lingoData: Readonly | string | Readonly | null = null; /** * Xtras include map. - * - * @default null */ public includeXtras: Readonly | null = null; /** * Nest xtras in a Configuration directory. - * - * @default false */ - public nestXtrasConfiguration: boolean = false; + public nestXtrasConfiguration = false; /** * Set the nobrowse option on mounted disk images. diff --git a/src/projector/mac/app.ts b/src/projector/mac/app.ts index 436e393..52b80e4 100644 --- a/src/projector/mac/app.ts +++ b/src/projector/mac/app.ts @@ -21,29 +21,21 @@ import {ProjectorMac} from '../mac'; export class ProjectorMacApp extends ProjectorMac { /** * Binary name. - * - * @default null */ public binaryName: string | null = null; /** * Intel binary package, not universal binary. - * - * @default false */ public intel = false; /** * Icon file. - * - * @default null */ public iconFile: string | null = null; /** * Icon data. - * - * @default null */ public iconData: Readonly | null = null; @@ -61,15 +53,11 @@ export class ProjectorMacApp extends ProjectorMac { /** * PkgInfo file. - * - * @default null */ public pkgInfoFile: string | null = null; /** * PkgInfo data. - * - * @default null */ public pkgInfoData: string | Readonly | null = null; @@ -85,8 +73,6 @@ export class ProjectorMacApp extends ProjectorMac { /** * Nest Xtras at *.app/Contents/xtras. - * - * @default false */ public nestXtrasContents = false;