@nephele/adapter-file-system
Version:
File system adapter for the Nephele WebDAV server.
10 lines (9 loc) • 367 B
TypeScript
export declare const userReadBit = 256;
export declare const userWriteBit = 128;
export declare const userExecuteBit = 64;
export declare const groupReadBit = 32;
export declare const groupWriteBit = 16;
export declare const groupExecuteBit = 8;
export declare const otherReadBit = 4;
export declare const otherWriteBit = 2;
export declare const otherExecuteBit = 1;