generated from RebeccaStevens/template-typescript-node-package
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: update linting and move some files again
- Loading branch information
1 parent
80965de
commit d04623a
Showing
216 changed files
with
1,363 additions
and
2,942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,16 @@ | ||
import { type Exponent } from "./exponents"; | ||
import { type Pow, type Root } from "./units-operations"; | ||
import type { Exponent } from "./exponents"; | ||
import type { Pow, Root } from "./units-operations"; | ||
|
||
/** | ||
* Multiple the exponent values of a unit by a number. | ||
* | ||
* @deprecated Use {@link Pow} instead. | ||
*/ | ||
export type MultiplyUnitExponents<T extends number, E extends Exponent> = Pow< | ||
T, | ||
E | ||
>; | ||
export type MultiplyUnitExponents<T extends number, E extends Exponent> = Pow<T, E>; | ||
|
||
/** | ||
* Divide the exponent values of a unit by a number. | ||
* | ||
* @deprecated Use {@link Root} instead. | ||
*/ | ||
export type DivideUnitExponents<T extends number, E extends Exponent> = Root< | ||
T, | ||
E | ||
>; | ||
export type DivideUnitExponents<T extends number, E extends Exponent> = Root<T, E>; |
Oops, something went wrong.