aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/types.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/types.ts b/src/utils/types.ts
index c7aaf86c..affdda7e 100644
--- a/src/utils/types.ts
+++ b/src/utils/types.ts
@@ -35,5 +35,5 @@ export type MethodOf<TObjectType, TSignature extends Callable = Callable> = {
*/
export type MethodsOf<
TObjectType,
- TSignature extends Callable = Callable
+ TSignature extends Callable = Callable,
> = ReadonlyArray<MethodOf<TObjectType, TSignature>>;