From 10eb9e445621ee9641e4f1ceb512f2417a3d7fbc Mon Sep 17 00:00:00 2001 From: Razboy20 Date: Thu, 7 Mar 2024 19:46:39 -0600 Subject: [PATCH] chore: prettier --- src/views/styles/fonts.module.scss.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/views/styles/fonts.module.scss.d.ts b/src/views/styles/fonts.module.scss.d.ts index 76c245d9..e979d702 100644 --- a/src/views/styles/fonts.module.scss.d.ts +++ b/src/views/styles/fonts.module.scss.d.ts @@ -5,7 +5,6 @@ export interface IWeights { normal_weight: number; } - /** 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;