2022-11-06 06:17:06 +00:00
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
/**
|
2022-11-09 07:45:44 +00:00
|
|
|
* @param {GpcSvg} gpcsvg
|
|
|
|
* @returns {Uint8Array}
|
|
|
|
*/
|
|
|
|
export function get_gpc(gpcsvg: GpcSvg): Uint8Array;
|
|
|
|
/**
|
|
|
|
* @param {GpcSvg} gpcsvg
|
2022-11-06 06:56:54 +00:00
|
|
|
* @returns {Uint8Array}
|
2022-11-06 06:17:06 +00:00
|
|
|
*/
|
2022-11-09 07:45:44 +00:00
|
|
|
export function get_svg(gpcsvg: GpcSvg): Uint8Array;
|
|
|
|
/**
|
|
|
|
* @param {string} input_str
|
|
|
|
* @returns {Promise<GpcSvg>}
|
|
|
|
*/
|
2022-11-09 19:45:48 +00:00
|
|
|
export function convert_gpx_strings_no_osm(input_str: string): Promise<GpcSvg>;
|
|
|
|
/**
|
|
|
|
* @param {string} input_str
|
|
|
|
* @param {string} key1
|
|
|
|
* @param {string} value1
|
|
|
|
* @param {string} key2
|
|
|
|
* @param {string} value2
|
|
|
|
* @param {string} key3
|
|
|
|
* @param {string} value3
|
|
|
|
* @param {string} key4
|
|
|
|
* @param {string} value4
|
|
|
|
* @returns {Promise<GpcSvg>}
|
|
|
|
*/
|
|
|
|
export function convert_gpx_strings(input_str: string, key1: string, value1: string, key2: string, value2: string, key3: string, value3: string, key4: string, value4: string): Promise<GpcSvg>;
|
2022-11-09 07:45:44 +00:00
|
|
|
/**
|
|
|
|
*/
|
|
|
|
export class GpcSvg {
|
|
|
|
free(): void;
|
|
|
|
}
|
2022-11-06 06:17:06 +00:00
|
|
|
|
|
|
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
|
|
|
|
|
|
export interface InitOutput {
|
|
|
|
readonly memory: WebAssembly.Memory;
|
2022-11-09 07:45:44 +00:00
|
|
|
readonly __wbg_gpcsvg_free: (a: number) => void;
|
|
|
|
readonly get_gpc: (a: number, b: number) => void;
|
|
|
|
readonly get_svg: (a: number, b: number) => void;
|
2022-11-09 19:45:48 +00:00
|
|
|
readonly convert_gpx_strings_no_osm: (a: number, b: number) => number;
|
|
|
|
readonly convert_gpx_strings: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number) => number;
|
2022-11-06 06:17:06 +00:00
|
|
|
readonly __wbindgen_malloc: (a: number) => number;
|
|
|
|
readonly __wbindgen_realloc: (a: number, b: number, c: number) => number;
|
2022-11-09 07:45:44 +00:00
|
|
|
readonly __wbindgen_export_2: WebAssembly.Table;
|
2022-12-30 17:05:13 +00:00
|
|
|
readonly _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h317df853f2d4653e: (a: number, b: number, c: number) => void;
|
2022-11-09 07:45:44 +00:00
|
|
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
2022-11-06 06:17:06 +00:00
|
|
|
readonly __wbindgen_free: (a: number, b: number) => void;
|
2022-11-09 07:45:44 +00:00
|
|
|
readonly __wbindgen_exn_store: (a: number) => void;
|
2022-12-30 17:05:13 +00:00
|
|
|
readonly wasm_bindgen__convert__closures__invoke2_mut__h573cb80e0bf72240: (a: number, b: number, c: number, d: number) => void;
|
2022-11-06 06:17:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
|
|
/**
|
|
|
|
* Instantiates the given `module`, which can either be bytes or
|
|
|
|
* a precompiled `WebAssembly.Module`.
|
|
|
|
*
|
|
|
|
* @param {SyncInitInput} module
|
|
|
|
*
|
|
|
|
* @returns {InitOutput}
|
|
|
|
*/
|
|
|
|
export function initSync(module: SyncInitInput): InitOutput;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
|
|
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
|
|
*
|
|
|
|
* @param {InitInput | Promise<InitInput>} module_or_path
|
|
|
|
*
|
|
|
|
* @returns {Promise<InitOutput>}
|
|
|
|
*/
|
|
|
|
export default function init (module_or_path?: InitInput | Promise<InitInput>): Promise<InitOutput>;
|