aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorShinigami <[email protected]>2023-08-06 14:24:10 +0200
committerGitHub <[email protected]>2023-08-06 14:24:10 +0200
commit6b0cecae887cb22729e005e4268401b7c625a42a (patch)
treeef05b81a903b44059bd03a4b6f00b694ac99fcdc /src/utils
parent8345e77b1a0633e55baaf7cf404819cd61629e63 (diff)
downloadfaker-6b0cecae887cb22729e005e4268401b7c625a42a.tar.xz
faker-6b0cecae887cb22729e005e4268401b7c625a42a.zip
chore(deps): update dependency prettier to v3 (#2260)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ST-DDT <[email protected]>
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>>;