fs-utils-sync
Version:
The fs-utils-sync package provides a collection of well-tested, synchronous file system utility functions. It promotes consistency and readability across projects by providing a unified approach to common file operations, saving you development time and i
11 lines (10 loc) • 542 B
TypeScript
import { IDirectoryElementsOptions } from '../shared/types.js';
declare const DIRECTORY_ELEMENTS_DEFAULT_OPTIONS: IDirectoryElementsOptions;
/**
* Builds the options that will be used to query the directory elements. Properties that are not
* provided are filled with defaults.
* @param options?
* @returns IDirectoryElementsOptions
*/
declare const buildDirectoryElementsOptions: (options?: Partial<IDirectoryElementsOptions>) => IDirectoryElementsOptions;
export { DIRECTORY_ELEMENTS_DEFAULT_OPTIONS, buildDirectoryElementsOptions, };