UNPKG

@bscotch/stitch-launcher

Version:

Manage GameMaker IDE and runtime installations for fast switching between versions.

19 lines 763 B
import { z } from 'zod'; export declare const gameMakerFeedChannels: ["lts", "stable", "beta", "unstable"]; export declare const gameMakerFeedDefaultChannels: ["lts", "stable", "beta"]; export interface GameMakerSearch { channel?: GameMakerChannel; version?: string; } export type GameMakerChannel = z.infer<typeof gameMakerChannelSchema>; export declare const gameMakerChannelSchema: z.ZodEnum<{ lts: "lts"; stable: "stable"; beta: "beta"; unstable: "unstable"; }>; export type GameMakerFeedOptions = z.input<typeof gameMakerFeedOptionsSchema>; export declare const gameMakerFeedOptionsSchema: z.ZodObject<{ maxAgeSeconds: z.ZodDefault<z.ZodOptional<z.ZodNumber>>; }, z.core.$strip>; //# sourceMappingURL=GameMakerFeeds.types.d.ts.map