Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LaunchdOptions

import type { LaunchdOptions } from "https://git.sr.ht/~ruivieira/deno-experiments/blob/master/sysadmin/launchd.ts";

INFO: Generate macOS launchd plists

interface LaunchdOptions {
arguments?: Array<string>;
env?: string;
err: string;
interval: number;
key: string;
out: string;
program: string;
}

§Properties

§
arguments?: Array<string>
[src]
§
env?: string
[src]
§
err: string
[src]
§
interval: number
[src]
§
key: string
[src]
§
out: string
[src]
§
program: string
[src]