UNPKG

lerna

Version:

Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository

5 lines (4 loc) 204 B
import { SymlinkType } from "fs-extra"; type CreateSymlinkType = SymlinkType | "exec"; export declare function createSymlink(src: string, dest: string, type: CreateSymlinkType): Promise<void>; export {};