ddnet
Version:
A typescript npm package for interacting with data from ddnet.org
17 lines (16 loc) • 473 B
TypeScript
import { z } from 'zod';
/**
* The zod schema for all completed map names of a player.
*
* @see
* [players.py](https://github.com/ddnet/ddnet-scripts/blob/master/servers/scripts/players.py)
*
* @internal
*/
export declare const _Schema_players_json: z.ZodArray<z.ZodString, "many">;
/**
* All completed map names of a player array type, inferred from {@link _Schema_players_json}
*
* @internal
*/
export type _PlayersJson = z.infer<typeof _Schema_players_json>;