FilesystemSymlinkKind import { FilesystemSymlinkKind } from "destack:fs/binding"; Symlink target type hint. export enum FilesystemSymlinkKind { Auto = 0, File = 1, Directory = 2, } language/library/src/fs/binding/namespace.ds:26:33 Variants Auto = 0 Let the runtime infer the target type. File = 1 Create a symlink to a file. Directory = 2 Create a symlink to a directory.