Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Nov 26, 2024
1 parent bf7a71d commit 20861da
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/finder.d.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,3 @@
/**
* Defines the options of a {@link Finder} instance.
*/
export type FinderOptions = Partial<{

/**
* The list of executable file extensions.
*/
extensions: Array<string>;

/**
* The list of system paths.
*/
paths: Array<string>;
}>;

/**
* Finds the instances of an executable in the system path.
*/
Expand Down Expand Up @@ -54,3 +38,19 @@ export class Finder {
*/
isExecutable(file: string): Promise<boolean>;
}

/**
* Defines the options of a {@link Finder} instance.
*/
export type FinderOptions = Partial<{

/**
* The list of executable file extensions.
*/
extensions: Array<string>;

/**
* The list of system paths.
*/
paths: Array<string>;
}>;

0 comments on commit 20861da

Please sign in to comment.