mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 15:49:44 -05:00
BREAKING(std/wasi): use record for exports (#7109)
This commit is contained in:
parent
111a2fbe3e
commit
c1d543e10a
1 changed files with 1 additions and 2 deletions
|
@ -292,8 +292,7 @@ export default class Module {
|
||||||
// deno-lint-ignore no-explicit-any
|
// deno-lint-ignore no-explicit-any
|
||||||
fds: any[];
|
fds: any[];
|
||||||
|
|
||||||
// deno-lint-ignore no-explicit-any
|
exports: Record<string, Function>;
|
||||||
exports: { [key: string]: any };
|
|
||||||
|
|
||||||
constructor(options: ModuleOptions) {
|
constructor(options: ModuleOptions) {
|
||||||
this.args = options.args ? options.args : [];
|
this.args = options.args ? options.args : [];
|
||||||
|
|
Loading…
Reference in a new issue