From 32ca1c979f139f4bd30cac7a1812715752fcb9a1 Mon Sep 17 00:00:00 2001 From: eryue0220 Date: Sat, 30 Mar 2024 17:30:02 +0800 Subject: [PATCH] fix: ci --- expect/_types.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/expect/_types.ts b/expect/_types.ts index 942e097dec15..feee63178549 100644 --- a/expect/_types.ts +++ b/expect/_types.ts @@ -112,12 +112,12 @@ export interface EqualOptionUtil extends MatcherContext { } export interface Colors { - comment: {close: string; open: string}; - content: {close: string; open: string}; - prop: {close: string; open: string}; - tag: {close: string; open: string}; - value: {close: string; open: string}; -}; + comment: { close: string; open: string }; + content: { close: string; open: string }; + prop: { close: string; open: string }; + tag: { close: string; open: string }; + value: { close: string; open: string }; +} type Indent = (arg0: string) => string; type Print = (arg0: unknown) => string; @@ -140,7 +140,7 @@ export interface Config { printFunctionName: boolean; spacingInner: string; spacingOuter: string; -}; +} export type Printer = ( val: unknown, @@ -155,7 +155,7 @@ interface PluginOptions { edgeSpacing: string; min: boolean; spacing: string; -}; +} type Test = (arg0: any) => boolean; @@ -169,7 +169,7 @@ export interface NewSnapshotPlugin { printer: Printer, ) => string; test: Test; -}; +} export interface OldSnapshotPlugin { print: ( @@ -180,7 +180,7 @@ export interface OldSnapshotPlugin { colors: Colors, ) => string; test: Test; -}; +} export type SnapshotPlugin = NewSnapshotPlugin | OldSnapshotPlugin;