UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

12 lines (9 loc) 291 B
import { parseArgs as $parseArgs } from "https://jsr.io/@std/cli/1.0.9/parse_args.ts"; export type ParsedArgs = { subprocess: string; spawnId: number; metricsReportFrequencyInMs?: number; } export function parseArgs(args: string[]): ParsedArgs { return $parseArgs(args); }