cannot use this module on Typescript #23
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
export defualt X
isexports['default'] = X
export defualt X
is notmodule.exports = X
import X from 'x'
isconst X = require('x')['default']
import X from 'x'
is notconst X = require('x')
https://github.com/SheetJS/js-codepage/pull/19