@oh-my-pi/pi-natives 9.4.0 → 9.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -13
- package/native/pi_natives.darwin-arm64.node +0 -0
- package/native/pi_natives.darwin-x64.node +0 -0
- package/native/pi_natives.linux-arm64.node +0 -0
- package/native/pi_natives.linux-x64.node +0 -0
- package/native/pi_natives.win32-x64.node +0 -0
- package/package.json +6 -6
- package/src/find/types.ts +31 -0
- package/src/grep/index.ts +37 -295
- package/src/grep/types.ts +59 -19
- package/src/highlight/index.ts +5 -13
- package/src/html/index.ts +5 -35
- package/src/html/types.ts +1 -16
- package/src/image/index.ts +52 -73
- package/src/index.ts +20 -93
- package/src/native.ts +159 -0
- package/src/request-options.ts +94 -0
- package/src/text/index.ts +16 -24
- package/src/grep/file-reader.ts +0 -51
- package/src/grep/filters.ts +0 -77
- package/src/grep/worker.ts +0 -212
- package/src/html/worker.ts +0 -40
- package/src/image/types.ts +0 -52
- package/src/image/worker.ts +0 -152
- package/src/pool.ts +0 -362
- package/src/wasix.ts +0 -1745
- package/src/worker-resolver.ts +0 -9
- package/wasm/pi_natives.d.ts +0 -148
- package/wasm/pi_natives.js +0 -891
- package/wasm/pi_natives_bg.wasm +0 -0
- package/wasm/pi_natives_bg.wasm.d.ts +0 -32
package/wasm/pi_natives_bg.wasm
DELETED
|
Binary file
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
export const memory: WebAssembly.Memory;
|
|
4
|
-
export const __wbg_compiledpattern_free: (a: number, b: number) => void;
|
|
5
|
-
export const __wbg_photonimage_free: (a: number, b: number) => void;
|
|
6
|
-
export const compiledpattern_has_match: (a: number, b: number, c: number) => number;
|
|
7
|
-
export const compiledpattern_new: (a: number, b: number) => void;
|
|
8
|
-
export const compiledpattern_search: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
9
|
-
export const extract_segments: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
10
|
-
export const get_supported_languages: (a: number) => void;
|
|
11
|
-
export const has_match: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
12
|
-
export const highlight_code: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
13
|
-
export const html_to_markdown: (a: number, b: number, c: number, d: number) => void;
|
|
14
|
-
export const photonimage_get_bytes: (a: number, b: number) => void;
|
|
15
|
-
export const photonimage_get_bytes_gif: (a: number, b: number) => void;
|
|
16
|
-
export const photonimage_get_bytes_jpeg: (a: number, b: number, c: number) => void;
|
|
17
|
-
export const photonimage_get_bytes_webp: (a: number, b: number) => void;
|
|
18
|
-
export const photonimage_get_height: (a: number) => number;
|
|
19
|
-
export const photonimage_get_width: (a: number) => number;
|
|
20
|
-
export const photonimage_new_from_byteslice: (a: number, b: number, c: number) => void;
|
|
21
|
-
export const resize: (a: number, b: number, c: number, d: number) => number;
|
|
22
|
-
export const search: (a: number, b: number, c: number) => number;
|
|
23
|
-
export const slice_with_width: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
24
|
-
export const supports_language: (a: number, b: number) => number;
|
|
25
|
-
export const truncate_to_width: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
26
|
-
export const visible_width: (a: number, b: number) => number;
|
|
27
|
-
export const compiledpattern_has_match_bytes: (a: number, b: number, c: number) => number;
|
|
28
|
-
export const compiledpattern_search_bytes: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
29
|
-
export const __wbindgen_export: (a: number, b: number) => number;
|
|
30
|
-
export const __wbindgen_export2: (a: number, b: number, c: number, d: number) => number;
|
|
31
|
-
export const __wbindgen_export3: (a: number, b: number, c: number) => void;
|
|
32
|
-
export const __wbindgen_add_to_stack_pointer: (a: number) => number;
|