diff --git a/src/index.ts b/src/index.ts index 28b617f..06775ce 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,3 +10,12 @@ export * from './lsTypes'; export * from './lsfnd'; +export type { + LsTypes, + LsTypesInterface, + LsTypesKeys, + LsTypesValues, + LsOptions, + LsEntries, + LsResult +} from '../types'; diff --git a/src/lsfnd.ts b/src/lsfnd.ts index 5dd7755..0efcd8c 100644 --- a/src/lsfnd.ts +++ b/src/lsfnd.ts @@ -19,8 +19,7 @@ import type { LsEntries, LsResult, LsOptions, - LsTypesKeys, - LsTypesValues + LsTypes } from '../types'; type Unpack = A extends Array<(infer U)> ? U : A; @@ -82,7 +81,7 @@ function fileUrlToPath(url: URL | string): string { * @internal */ function checkType( - type: lsTypes | LsTypesKeys | LsTypesValues | N, + type: LsTypes | N, validTypes: Array<(string | number | N)> ): void { function joinAll(arr: (typeof validTypes), delim: string): string { @@ -186,11 +185,7 @@ function checkType( export async function ls( dirpath: string | URL, options?: LsOptions | RegExp | undefined, - type?: - | lsTypes - | LsTypesKeys - | LsTypesValues - | undefined + type?: LsTypes | undefined ): Promise { let absdirpath: string; let match: string | RegExp, @@ -355,7 +350,7 @@ export async function ls( */ export async function lsFiles( dirpath: string | URL, - options?: LsOptions | RegExp + options?: LsOptions | RegExp | undefined ): Promise { return ls(dirpath, options, lsTypes.LS_F); } @@ -426,7 +421,7 @@ export async function lsFiles( */ export async function lsDirs( dirpath: string | URL, - options?: LsOptions | RegExp + options?: LsOptions | RegExp | undefined ): Promise { return ls(dirpath, options, lsTypes.LS_D); } diff --git a/tsconfig.production.json b/tsconfig.production.json index 5f13bbe..1f6b47a 100644 --- a/tsconfig.production.json +++ b/tsconfig.production.json @@ -3,6 +3,7 @@ "compilerOptions": { "strict": true, "alwaysStrict": true, - "removeComments": true + "removeComments": true, + "declaration": true } } diff --git a/types/index.d.ts b/types/index.d.ts index e3cd666..18d7b98 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -3,8 +3,7 @@ * Project: lsfnd (https://github.com/mitsuki31/lsfnd.git) * Definitions by: Ryuu Mitsuki (https://github.com/mitsuki31) * -* Copyright (c) 2024 Ryuu Mitsuki. -* Licensed under the MIT license. +* Copyright (c) 2024 Ryuu Mitsuki. All rights reserved. * * @module types * @author Ryuu Mitsuki (https://github.com/mitsuki31) @@ -21,6 +20,7 @@ * @since 0.1.0 */ export declare type LsEntries = Array; + /** * This type alias represents the possible return values of the `ls*` functions. * It can be either a {@link LsEntries} array containing the list of file paths, @@ -30,22 +30,23 @@ export declare type LsEntries = Array; export declare type LsResult = LsEntries | null; /** - * An enum representing different file types. - * @since 0.1.0 - * @see {@link lsfnd!~lsTypes lsfnd.lsTypes} - * @see {@link LsTypes} + * A combination union types containing all possible values used to specify the + * returned results on {@link !lsfnd~ls ls} function. + * @since 1.0.0 */ -export declare const lsTypes: LsTypes; +export declare type LsTypes = LsTypesKeys | LsTypesValues; + /** * Type representing all possible keys of the {@link lsTypes} enum. * @since 0.1.0 - * @see {@link LsTypes} + * @see {@link LsTypesInterface} */ -export declare type LsTypesKeys = keyof LsTypes; +export declare type LsTypesKeys = keyof LsTypesInterface; + /** * Type representing all possible values of the {@link lsTypes} enum. * @since 0.1.0 - * @see {@link LsTypes} + * @see {@link LsTypesInterface} */ export declare type LsTypesValues = | 0b00 // 0 (interpreted the same as LS_A | 1) @@ -60,7 +61,7 @@ export declare type LsTypesValues = * @interface * @since 0.1.0 */ -export declare interface LsTypes { +export declare interface LsTypesInterface { /** * Represents an option to include all file types. * @defaultValue `0b01 << 0b00` (`0b01` | `0o01` | `0x01` | `1`) @@ -87,12 +88,12 @@ export declare interface LsTypes { export declare interface LsOptions { /** * Specifies the character encoding to be used when reading a directory. - * @defaultValue Defaults to `'utf8'` if not provided. + * @defaultValue `'utf8'` */ encoding?: BufferEncoding | undefined, /** * A boolean flag indicating whether to include subdirectories in the listing. - * @defaultValue Defaults to `false` if not provided. + * @defaultValue `false` */ recursive?: boolean | undefined, /** @@ -112,17 +113,33 @@ export declare interface LsOptions { // ====== APIs ===== // +/** + * {@inheritDoc !lsTypes~lsTypes} + * + * @see For more details, refer to {@link !lsTypes~lsTypes lsTypes} enum documentation. + */ +export declare const lsTypes: Record< + LsTypesKeys, + LsTypesValues +> & Record< + LsTypesValues, + LsTypesKeys +>; + +/** {@inheritDoc !lsfnd~ls} */ export declare function ls( dirpath: string | URL, options?: LsOptions | RegExp | undefined, - type?: LsTypes | LsTypesKeys | LsTypesValues | undefined + type?: LsTypes | undefined ): Promise +/** {@inheritDoc !lsfnd~lsFiles} */ export declare function lsFiles( dirpath: string | URL, options?: LsOptions | RegExp | undefined ): Promise +/** {@inheritDoc !lsfnd~lsDirs} */ export declare function lsDirs( dirpath: string | URL, options?: LsOptions | RegExp | undefined