You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
250 B

const NodeDescriptorType = {
File: 'file',
Directory: 'directory',
Symlink: 'symlink',
}
const NodeModeType = {
File: 33188,
Directory: 16877,
Symlink: 40960,
}
module.exports = exports = { NodeDescriptorType, NodeModeType }