UNPKG

@bscotch/stitch-launcher

Version:

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

14 lines 491 B
import { literal } from '@bscotch/utility/browser'; import { z } from 'zod'; export const gameMakerFeedChannels = literal([ 'lts', 'stable', 'beta', 'unstable', ]); export const gameMakerFeedDefaultChannels = literal(['lts', 'stable', 'beta']); export const gameMakerChannelSchema = z.enum(gameMakerFeedChannels); export const gameMakerFeedOptionsSchema = z.object({ maxAgeSeconds: z.number().optional().default(3600), }); //# sourceMappingURL=GameMakerFeeds.types.js.map