rune
Version:
CLI to upload your games to Rune
8 lines (7 loc) • 318 B
TypeScript
import { CreateGameInput } from "../../generated/types.js";
/**
* Creates a new game on the Rune platform
* @param game The game data to create
* @returns A promise that resolves to the created game's ID
*/
export declare function createGame(game: Pick<CreateGameInput, "title" | "description">): Promise<number>;