Skip to content

Commit bcff0d2

Browse files
committed
get doc working again
1 parent 99f30c5 commit bcff0d2

34 files changed

+4540
-411
lines changed
+354
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,354 @@
1+
[quickjs-emscripten](../../packages.md)**@jitl/quickjs-ffi-types**[Readme](index.md) \| [Exports](exports.md)
2+
3+
***
4+
5+
[quickjs-emscripten](../../packages.md) / @jitl/quickjs-ffi-types
6+
7+
# @jitl/quickjs-ffi-types
8+
9+
## Contents
10+
11+
- [Interfaces](exports.md#interfaces)
12+
- [Type Aliases](exports.md#type-aliases)
13+
- [BorrowedHeapCharPointer](exports.md#borrowedheapcharpointer)
14+
- [EitherModule](exports.md#eithermodule)
15+
- [JSBorrowedCharPointer](exports.md#jsborrowedcharpointer)
16+
- [JSContextPointer](exports.md#jscontextpointer)
17+
- [JSContextPointerPointer](exports.md#jscontextpointerpointer)
18+
- [JSModuleDefPointer](exports.md#jsmoduledefpointer)
19+
- [JSRuntimePointer](exports.md#jsruntimepointer)
20+
- [JSValueConstPointer](exports.md#jsvalueconstpointer)
21+
- [JSValueConstPointerPointer](exports.md#jsvalueconstpointerpointer)
22+
- [JSValuePointer](exports.md#jsvaluepointer)
23+
- [JSValuePointerPointer](exports.md#jsvaluepointerpointer)
24+
- [JSVoidPointer](exports.md#jsvoidpointer)
25+
- [OwnedHeapCharPointer](exports.md#ownedheapcharpointer)
26+
- [QTS\_C\_To\_HostCallbackFuncPointer](exports.md#qts-c-to-hostcallbackfuncpointer)
27+
- [QTS\_C\_To\_HostInterruptFuncPointer](exports.md#qts-c-to-hostinterruptfuncpointer)
28+
- [QTS\_C\_To\_HostLoadModuleFuncPointer](exports.md#qts-c-to-hostloadmodulefuncpointer)
29+
- [QuickJSVariant](exports.md#quickjsvariant)
30+
- [Variables](exports.md#variables)
31+
- [EvalFlags](exports.md#evalflags)
32+
- [Functions](exports.md#functions)
33+
- [assertSync()](exports.md#assertsync)
34+
35+
## Interfaces
36+
37+
- [EmscriptenModule](interfaces/EmscriptenModule.md)
38+
- [EmscriptenModuleLoader](interfaces/EmscriptenModuleLoader.md)
39+
- [QuickJSAsyncEmscriptenModule](interfaces/QuickJSAsyncEmscriptenModule.md)
40+
- [QuickJSAsyncFFI](interfaces/QuickJSAsyncFFI.md)
41+
- [QuickJSAsyncVariant](interfaces/QuickJSAsyncVariant.md)
42+
- [QuickJSEmscriptenModule](interfaces/QuickJSEmscriptenModule.md)
43+
- [QuickJSFFI](interfaces/QuickJSFFI.md)
44+
- [QuickJSSyncVariant](interfaces/QuickJSSyncVariant.md)
45+
46+
## Type Aliases
47+
48+
### BorrowedHeapCharPointer
49+
50+
> **BorrowedHeapCharPointer**: `Pointer`\<`"const char"` \| `"char"` \| `"js const char"`\>
51+
52+
Used internally for Javascript-to-C calls that may contain strings too large
53+
for the Emscripten stack.
54+
55+
#### Source
56+
57+
[ffi-types.ts:77](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L77)
58+
59+
***
60+
61+
### EitherModule
62+
63+
> **EitherModule**: [`QuickJSEmscriptenModule`](interfaces/QuickJSEmscriptenModule.md) \| [`QuickJSAsyncEmscriptenModule`](interfaces/QuickJSAsyncEmscriptenModule.md)
64+
65+
#### Source
66+
67+
[emscripten-types.ts:165](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/emscripten-types.ts#L165)
68+
69+
***
70+
71+
### JSBorrowedCharPointer
72+
73+
> **JSBorrowedCharPointer**: `Pointer`\<`"js const char"`\>
74+
75+
Used internally for Javascript-to-C calls that may contain strings too large
76+
for the Emscripten stack.
77+
78+
#### Source
79+
80+
[ffi-types.ts:89](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L89)
81+
82+
***
83+
84+
### JSContextPointer
85+
86+
> **JSContextPointer**: `Pointer`\<`"JSContext"`\>
87+
88+
`JSContext*`.
89+
90+
#### Source
91+
92+
[ffi-types.ts:19](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L19)
93+
94+
***
95+
96+
### JSContextPointerPointer
97+
98+
> **JSContextPointerPointer**: `Pointer`\<`"JSContext"`\>
99+
100+
`JSContext**`. Used internally for execute pending jobs.
101+
102+
#### Source
103+
104+
[ffi-types.ts:24](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L24)
105+
106+
***
107+
108+
### JSModuleDefPointer
109+
110+
> **JSModuleDefPointer**: `Pointer`\<`"JSModuleDef"`\>
111+
112+
`JSModuleDef*`.
113+
114+
#### Source
115+
116+
[ffi-types.ts:29](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L29)
117+
118+
***
119+
120+
### JSRuntimePointer
121+
122+
> **JSRuntimePointer**: `Pointer`\<`"JSRuntime"`\>
123+
124+
`JSRuntime*`.
125+
126+
#### Source
127+
128+
[ffi-types.ts:14](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L14)
129+
130+
***
131+
132+
### JSValueConstPointer
133+
134+
> **JSValueConstPointer**: `Pointer`\<`"JSValueConst"`\>
135+
136+
`JSValueConst*
137+
See [[JSValueConst]] and [[StaticJSValue]].
138+
139+
#### Source
140+
141+
[ffi-types.ts:41](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L41)
142+
143+
***
144+
145+
### JSValueConstPointerPointer
146+
147+
> **JSValueConstPointerPointer**: `Pointer`\<`"JSValueConst[]"`\>
148+
149+
Used internally for Javascript-to-C function calls.
150+
151+
#### Source
152+
153+
[ffi-types.ts:51](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L51)
154+
155+
***
156+
157+
### JSValuePointer
158+
159+
> **JSValuePointer**: `Pointer`\<`"JSValue"`\>
160+
161+
`JSValue*`.
162+
See [[JSValue]].
163+
164+
#### Source
165+
166+
[ffi-types.ts:35](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L35)
167+
168+
***
169+
170+
### JSValuePointerPointer
171+
172+
> **JSValuePointerPointer**: `Pointer`\<`"JSValue[]"`\>
173+
174+
Used internally for Javascript-to-C function calls.
175+
176+
#### Source
177+
178+
[ffi-types.ts:46](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L46)
179+
180+
***
181+
182+
### JSVoidPointer
183+
184+
> **JSVoidPointer**: `Pointer`\<`any`\>
185+
186+
Opaque pointer that was allocated by js_malloc.
187+
188+
#### Source
189+
190+
[ffi-types.ts:94](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L94)
191+
192+
***
193+
194+
### OwnedHeapCharPointer
195+
196+
> **OwnedHeapCharPointer**: `Pointer`\<`"char"`\>
197+
198+
Used internally for Javascript-to-C calls that may contain strings too large
199+
for the Emscripten stack.
200+
201+
#### Source
202+
203+
[ffi-types.ts:83](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L83)
204+
205+
***
206+
207+
### QTS\_C\_To\_HostCallbackFuncPointer
208+
209+
> **QTS\_C\_To\_HostCallbackFuncPointer**: `Pointer`\<`"C_To_HostCallbackFunc"`\>
210+
211+
Used internally for C-to-Javascript function calls.
212+
213+
#### Source
214+
215+
[ffi-types.ts:61](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L61)
216+
217+
***
218+
219+
### QTS\_C\_To\_HostInterruptFuncPointer
220+
221+
> **QTS\_C\_To\_HostInterruptFuncPointer**: `Pointer`\<`"C_To_HostInterruptFunc"`\>
222+
223+
Used internally for C-to-Javascript interrupt handlers.
224+
225+
#### Source
226+
227+
[ffi-types.ts:66](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L66)
228+
229+
***
230+
231+
### QTS\_C\_To\_HostLoadModuleFuncPointer
232+
233+
> **QTS\_C\_To\_HostLoadModuleFuncPointer**: `Pointer`\<`"C_To_HostLoadModuleFunc"`\>
234+
235+
Used internally for C-to-Javascript module loading.
236+
237+
#### Source
238+
239+
[ffi-types.ts:71](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L71)
240+
241+
***
242+
243+
### QuickJSVariant
244+
245+
> **QuickJSVariant**: [`QuickJSSyncVariant`](interfaces/QuickJSSyncVariant.md) \| [`QuickJSAsyncVariant`](interfaces/QuickJSAsyncVariant.md)
246+
247+
#### Source
248+
249+
[variant-types.ts:49](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/variant-types.ts#L49)
250+
251+
## Variables
252+
253+
### EvalFlags
254+
255+
> **EvalFlags**: `Object`
256+
257+
Bitfield options for JS_Eval() C function.
258+
259+
#### Type declaration
260+
261+
##### JS\_EVAL\_FLAG\_BACKTRACE\_BARRIER
262+
263+
> **JS\_EVAL\_FLAG\_BACKTRACE\_BARRIER**: `number`
264+
265+
don't include the stack frames before this eval in the Error() backtraces
266+
267+
##### JS\_EVAL\_FLAG\_COMPILE\_ONLY
268+
269+
> **JS\_EVAL\_FLAG\_COMPILE\_ONLY**: `number`
270+
271+
compile but do not run. The result is an object with a
272+
JS_TAG_FUNCTION_BYTECODE or JS_TAG_MODULE tag. It can be executed
273+
with JS_EvalFunction().
274+
275+
##### JS\_EVAL\_FLAG\_STRICT
276+
277+
> **JS\_EVAL\_FLAG\_STRICT**: `number`
278+
279+
force 'strict' mode
280+
281+
##### JS\_EVAL\_FLAG\_STRIP
282+
283+
> **JS\_EVAL\_FLAG\_STRIP**: `number`
284+
285+
force 'strip' mode
286+
287+
##### JS\_EVAL\_TYPE\_DIRECT
288+
289+
> **JS\_EVAL\_TYPE\_DIRECT**: `number`
290+
291+
direct call (internal use)
292+
293+
##### JS\_EVAL\_TYPE\_GLOBAL
294+
295+
> **JS\_EVAL\_TYPE\_GLOBAL**: `number`
296+
297+
global code (default)
298+
299+
##### JS\_EVAL\_TYPE\_INDIRECT
300+
301+
> **JS\_EVAL\_TYPE\_INDIRECT**: `number`
302+
303+
indirect call (internal use)
304+
305+
##### JS\_EVAL\_TYPE\_MASK
306+
307+
> **JS\_EVAL\_TYPE\_MASK**: `number`
308+
309+
##### JS\_EVAL\_TYPE\_MODULE
310+
311+
> **JS\_EVAL\_TYPE\_MODULE**: `number`
312+
313+
module code
314+
315+
#### Source
316+
317+
[ffi-types.ts:99](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L99)
318+
319+
## Functions
320+
321+
### assertSync()
322+
323+
> **assertSync**\<`Args`, `R`\>(`fn`): (...`args`) => `R`
324+
325+
#### Type parameters
326+
327+
**Args** extends `any`[]
328+
329+
**R**
330+
331+
#### Parameters
332+
333+
**fn**: (...`args`) => `R`
334+
335+
#### Returns
336+
337+
`Function`
338+
339+
> ##### Parameters
340+
>
341+
> • ...**args**: `Args`
342+
>
343+
> ##### Returns
344+
>
345+
> `R`
346+
>
347+
348+
#### Source
349+
350+
[ffi-types.ts:106](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-ffi-types/src/ffi-types.ts#L106)
351+
352+
***
353+
354+
Generated using [typedoc-plugin-markdown](https://www.npmjs.com/package/typedoc-plugin-markdown) and [TypeDoc](https://typedoc.org/)

doc/@jitl/quickjs-ffi-types/index.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[quickjs-emscripten](../../packages.md)**@jitl/quickjs-ffi-types**[Readme](index.md) \| [Exports](exports.md)
2+
3+
***
4+
5+
# @jitl/quickjs-ffi-types
6+
7+
This is an internal package, part of [quickjs-emscripten](https://github.com/justjake/quickjs-emscripten).
8+
9+
See the main package for documentation.
10+
11+
***
12+
13+
Generated using [typedoc-plugin-markdown](https://www.npmjs.com/package/typedoc-plugin-markdown) and [TypeDoc](https://typedoc.org/)

0 commit comments

Comments
 (0)