UNPKG

@wonderlandengine/api

Version:

Wonderland Engine's JavaScript API.

12 lines (11 loc) 255 B
/** * 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;