From c020780835b98509ac70b53047bb0ab6a9e9ce63 Mon Sep 17 00:00:00 2001 From: David Sveningsson Date: Thu, 3 Feb 2022 00:48:57 +0100 Subject: [PATCH] style: reformat --- typings.test-d.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/typings.test-d.ts b/typings.test-d.ts index 5f9bed9c..a6d01eb9 100644 --- a/typings.test-d.ts +++ b/typings.test-d.ts @@ -1,7 +1,9 @@ -import {expectType} from 'tsd'; +import { expectType } from 'tsd'; import betterAjvErrors, { IOutputError } from '.'; expectType(betterAjvErrors(true, false, [])); -expectType(betterAjvErrors(true, false, [], { format: 'cli'})); +expectType(betterAjvErrors(true, false, [], { format: 'cli' })); -expectType>(betterAjvErrors('abc', 'xyz', [], { format: 'js'})); +expectType>( + betterAjvErrors('abc', 'xyz', [], { format: 'js' }) +);