0.5.5 • Published 6 months ago

@types/appdmg v0.5.5

Weekly downloads
180
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/appdmg

Summary

This package contains type definitions for appdmg (https://github.com/LinusU/node-appdmg#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/appdmg.

index.d.ts

// Type definitions for appdmg 0.5
// Project: https://github.com/LinusU/node-appdmg#readme
// Definitions by: Daniel Perez Alvarez <https://github.com/unindented>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

declare namespace appdmg {
    interface Progress {
        current: number;
        total: number;
        type: 'step-begin' | 'step-end';
        title: string;
        status: 'ok' | 'skip' | 'fail';
    }

    interface EventEmitter extends NodeJS.EventEmitter {
        on(event: 'progress', listener: (info: Progress) => void): this;
        on(event: 'finish', listener: () => void): this;
        on(event: 'error', listener: (err: any) => void): this;
    }

    interface SpecificationOptions {
        app: string;
        background: string;
        icon: string;
        iconSize: number;
        title: string;
    }

    interface SpecificationWindow {
        position?: { x: number; y: number } | undefined;
        size?: { width: number; height: number } | undefined;
    }

    interface SpecificationContents {
        x: number;
        y: number;
        type: 'link' | 'file' | 'position';
        path: string;
        name?: string | undefined;
    }

    interface SpecificationCodeSign {
        'signing-identity': string;
        identifier?: string | undefined;
    }

    interface Specification {
        title: string;
        icon?: string | undefined;
        background?: string | undefined;
        'background-color'?: string | undefined;
        'icon-size'?: number | undefined;
        window?: SpecificationWindow | undefined;
        format: 'UDRW' | 'UDRO' | 'UDCO' | 'UDZO' | 'UDBZ' | 'ULFO';
        contents: SpecificationContents[];
        'code-sign'?: SpecificationCodeSign | undefined;
    }

    interface Options {
        source?: string;
        target: string;
        basepath: string;
        specification: Specification;
    }
}

declare function appdmg(options?: appdmg.Options): appdmg.EventEmitter;

export = appdmg;

Additional Details

  • Last updated: Mon, 26 Jul 2021 22:31:22 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Daniel Perez Alvarez.

0.5.4

7 months ago

0.5.3

8 months ago

0.5.5

6 months ago

0.5.2

3 years ago

0.5.1

3 years ago

0.5.0

6 years ago