rune
Version:
CLI to upload your games to Rune
12 lines (11 loc) • 470 B
TypeScript
import { CreateGameVersionMutationVariables } from "../../generated/types.js";
/**
* Creates a new game version on the Rune platform
* @param variables The variables needed to create a game version
* @returns A promise that resolves to the created game version data
*/
export declare function createGameVersion(variables: CreateGameVersionMutationVariables): Promise<{
newGameVersionId: number;
previewLink: string;
congratulationMsg: string | null;
}>;