22 lines
814 B
Haxe
22 lines
814 B
Haxe
package node.fs;
|
|
|
|
/**
|
|
Changes the permissions on a symbolic link. No arguments other than a possible
|
|
exception are given to the completion callback.
|
|
|
|
This method is only implemented on macOS.
|
|
|
|
See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.
|
|
**/
|
|
@:jsRequire("fs", "lchmod") @valueModuleOnly extern class Lchmod {
|
|
/**
|
|
Changes the permissions on a symbolic link. No arguments other than a possible
|
|
exception are given to the completion callback.
|
|
|
|
This method is only implemented on macOS.
|
|
|
|
See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.
|
|
**/
|
|
@:selfCall
|
|
static function call(path:PathLike, mode:ts.AnyOf2<String, Float>, callback:NoParamCallback):Void;
|
|
} |