Skip to content

Commit

Permalink
docs: remove author comment for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
TGTGamer authored Feb 20, 2024
1 parent 9633b04 commit 1b01c31
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/schema/src/utils/pkg-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export type PackageManagers = 'npm' | 'yarn' | 'pnpm';
* A type named FindUp that takes a type parameter e which extends boolean.
* If e extends true, it returns a union type of string[] or undefined.
* If e does not extend true, it returns a union type of string or undefined.
* @author Jonathan Stevens (TGTGamer)
*
* @export
* @template e A type parameter that extends boolean
Expand All @@ -19,7 +18,6 @@ export type FindUp<e extends boolean> = e extends true ? string[] | undefined :
* Optionally return a single path or multiple paths.
* If multiple allowed, return all paths found.
* If no paths are found, return undefined.
* @author Jonathan Stevens (TGTGamer)
*
* @export
* @template [e=false]
Expand Down

0 comments on commit 1b01c31

Please sign in to comment.