[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]LICENSE2025-10-29 15:57 1.1K 
[TXT]README.md2025-10-29 15:57 1.1K38d15e7 removed strapi.query from api controllers to repair migration on dev server? [كارل مبارك]
[TXT]index.d.ts2025-10-29 15:57 524  
[   ]package.json2025-10-29 15:57 789  
# Installation
> `npm install --save @types/fined`

# Summary
This package contains type definitions for fined (https://github.com/gulpjs/fined).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fined.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fined/index.d.ts)
````ts
export = fined;

declare function fined(path: string | fined.PathSpec, opts?: fined.PathSpec): fined.Result | null;

declare namespace fined {
    interface PathSpec {
        path?: string | undefined;
        name?: string | undefined;
        extensions?: string | string[] | { [extension: string]: string | null } | undefined;
        cwd?: string | undefined;
        findUp?: boolean | undefined;
    }

    interface Result {
        path: string;
        extension: string | { [extension: string]: string };
    }
}

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
 * Dependencies: none

# Credits
These definitions were written by [BendingBender](https://github.com/BendingBender).