@types/mock-fs
Version:
TypeScript definitions for mock-fs
13 lines (10 loc) • 335 B
TypeScript
import Item = require("./item");
export = SymbolicLink;
declare class SymbolicLink extends Item {
/** Sets the path (relative) to the source. */
setPath(pathname: string): void;
/** Get the path (relative) to the source. */
getPath(): string;
/** Get symbolic link stats. */
getStats(): Item.ExtendedStats;
}