UNPKG

ddnet

Version:

A typescript npm package for interacting with data from ddnet.org

15 lines 350 B
// ddnet.org/maps/?latest=1 import { z } from 'zod'; /** * The zod schema for latest finishes. * * @internal */ export const _Schema_maps_latest = z.array(z.object({ timestamp: z.number(), map: z.string(), name: z.string(), time: z.number(), server: z.string() // TODO: Fix servers type })); //# sourceMappingURL=latest.js.map