UNPKG

@wonderlandengine/api

Version:

Wonderland Engine's JavaScript API.

18 lines (17 loc) 402 B
/** * This file is automatically generated. * * **Do not** modify this file directly, but instead update * the 'write-version.mjs' script. */ /** * Version type following a subset of the Semantic Versioning specification. */ export type Version = { major: number; minor: number; patch: number; rc: number; }; /** Version of this API. */ export declare const APIVersion: Version;