Installation
npm install --save @types/auto-launch
Summary
This package contains type definitions for auto-launch (https://github.com/Teamwork/node-auto-launch).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/auto-launch.
interface AutoLaunchOptions {
name: string;
path?: string | undefined;
isHidden?: boolean | undefined;
mac?: {
useLaunchAgent?: boolean | undefined;
} | undefined;
}
declare class AutoLaunch {
constructor(options: AutoLaunchOptions);
enable(): Promise<void>;
disable(): Promise<void>;
isEnabled(): Promise<boolean>;
}
export = AutoLaunch;
Additional Details
- Last updated: Mon, 06 Nov 2023 22:41:04 GMT
- Dependencies: none
Credits
These definitions were written by rhysd, and Daniel Perez Alvarez.