/* tslint:disable */ /* eslint-disable */ /** * Generate planetary system from seed and primary star mass * @param {BigInt} seed * @param {number} stellar_mass * @returns {any} */ export function planetary_system(seed: BigInt, stellar_mass: number): any; /** * Generate random planet from seed and primary star mass * @param {BigInt} seed * @param {number} stellar_mass * @returns {any} */ export function planet(seed: BigInt, stellar_mass: number): any; export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module; export interface InitOutput { readonly memory: WebAssembly.Memory; readonly planetary_system: (a: number, b: number, c: number) => number; readonly planet: (a: number, b: number, c: number) => number; readonly __wbindgen_free: (a: number, b: number) => void; readonly __wbindgen_malloc: (a: number) => number; readonly __wbindgen_realloc: (a: number, b: number, c: number) => number; } /** * If `module_or_path` is {RequestInfo} or {URL}, makes a request and * for everything else, calls `WebAssembly.instantiate` directly. * * @param {InitInput | Promise} module_or_path * * @returns {Promise} */ export default function init (module_or_path?: InitInput | Promise): Promise;