diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-30 11:11:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-30 11:11:33 -0400 |
commit | c370f749b2260cc1d8970b1dcdc63ff00008e26d (patch) | |
tree | 1eff43e71ca0a5ccaeb48a3bf891bf2fdc0712ba /js/dispatch.ts | |
parent | 5401cb76304ae8d3e8896f6020ba4ef25bac0bba (diff) |
Remove ts_library_builder, maintain lib.deno_runtime.d.ts by hand (#2827)
Diffstat (limited to 'js/dispatch.ts')
-rw-r--r-- | js/dispatch.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/dispatch.ts b/js/dispatch.ts index dfa276cda..af91a9b9e 100644 --- a/js/dispatch.ts +++ b/js/dispatch.ts @@ -59,6 +59,7 @@ export const OP_READ_LINK = 53; export const OP_TRUNCATE = 54; export const OP_MAKE_TEMP_DIR = 55; export const OP_CWD = 56; +export const OP_FETCH_ASSET = 57; export function asyncMsgFromRust(opId: number, ui8: Uint8Array): void { switch (opId) { |