UNPKG

@bscotch/stitch

Version:

Stitch: The GameMaker Studio 2 Asset Pipeline Development Kit.

23 lines 776 B
/// <reference types="node" /> import { StitchProject } from '../../index.js'; export declare function listIssueProjectChoices(): Promise<{ name: string; value: string; }[]>; export declare function listLocalProjectChoices(): Promise<{ name: string; value: string; }[]>; export interface OpenablePath { path: string; app?: { name: string; }; } /** * Choices that can be used by inquirer, and passed * to `open()`, to open issue-related files and folders. */ export declare function openGameMakerIssue(issueProject: StitchProject): Promise<import("child_process").ChildProcess[]>; export declare function openPaths(paths: (string | OpenablePath)[]): Promise<import("child_process").ChildProcess[]>; //# sourceMappingURL=issuesLib.d.ts.map