chore: prettier

This commit is contained in:
Razboy20
2024-03-07 19:46:39 -06:00
parent 2f537b4f3e
commit 10eb9e4456

View File

@@ -5,7 +5,6 @@ export interface IWeights {
normal_weight: number; normal_weight: number;
} }
/** A utility type that removes the _weight postfix from the variable names for weights */ /** A utility type that removes the _weight postfix from the variable names for weights */
export type Weight = keyof IWeights extends `${infer U}_weight` ? U : never; export type Weight = keyof IWeights extends `${infer U}_weight` ? U : never;