UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

22 lines 374 B
export class OptionAbstract { /** * * @param {string} id */ constructor(id: string); /** * * @type {OptionGroup|null} */ parent: OptionGroup | null; /** * * @type {string} */ id: string; /** * @returns {string[]} */ computePath(): string[]; } //# sourceMappingURL=OptionAbstract.d.ts.map