fix: needs to be an es export

This commit is contained in:
Derrick Hammer 2023-07-15 08:30:58 -04:00
parent 956785f198
commit 98df56147e
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@ import info from "./info.js";
import list from "./list.js";
import type from "./type.js";
module.exports = {
export default {
'desc': desc,
'info': info,
'list': list,
'type': type,
}
};