mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -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
|
||||
fds: any[];
|
||||
|
||||
// deno-lint-ignore no-explicit-any
|
||||
exports: { [key: string]: any };
|
||||
exports: Record<string, Function>;
|
||||
|
||||
constructor(options: ModuleOptions) {
|
||||
this.args = options.args ? options.args : [];
|
||||
|
|
Loading…
Reference in a new issue