Sha256: 560ae026527f2f47c28919a03672bdd9765d364df4763a4fdbd49f5917055957

Contents?: true

Size: 1.27 KB

Versions: 74

Compression:

Stored size: 1.27 KB

Contents

export type PathTypeFunction = (path: string) => Promise<boolean>;

/**
 * Check whether the passed `path` is a file.
 *
 * @param path - The path to check.
 * @returns Whether the `path` is a file.
 */
export const isFile: PathTypeFunction;

/**
 * Check whether the passed `path` is a directory.
 *
 * @param path - The path to check.
 * @returns Whether the `path` is a directory.
 */
export const isDirectory: PathTypeFunction;

/**
 * Check whether the passed `path` is a symlink.
 *
 * @param path - The path to check.
 * @returns Whether the `path` is a symlink.
 */
export const isSymlink: PathTypeFunction;

export type PathTypeSyncFunction = (path: string) => boolean;

/**
 * Synchronously check whether the passed `path` is a file.
 *
 * @param path - The path to check.
 * @returns Whether the `path` is a file.
 */
export const isFileSync: PathTypeSyncFunction;

/**
 * Synchronously check whether the passed `path` is a directory.
 *
 * @param path - The path to check.
 * @returns Whether the `path` is a directory.
 */
export const isDirectorySync: PathTypeSyncFunction;

/**
 * Synchronously check whether the passed `path` is a symlink.
 *
 * @param path - The path to check.
 * @returns Whether the `path` is a directory.
 */
export const isSymlinkSync: PathTypeSyncFunction;

Version data entries

74 entries across 73 versions & 8 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.59 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.58 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.57 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.56 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.55 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.54 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.53 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.52 node_modules/path-type/index.d.ts
trusty-cms-6.3.1 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.51 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.50 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.49 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.48 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.47 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.46 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.45 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.44 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.43 node_modules/path-type/index.d.ts
immosquare-cleaner-0.1.42 node_modules/path-type/index.d.ts