Skip to content

Commit

Permalink
apply review suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
siriwatknp committed Jan 8, 2024
1 parent 8869037 commit 27b03d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/serialize/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ export type CSSProperties = CSS.PropertiesFallback<number | string>
export type CSSPropertiesWithMultiValues<Props = unknown> = {
[K in keyof CSSProperties]:
| CSSProperties[K]
| ReadonlyArray<CSSProperties[K]>
| ((props: Props) => CSSProperties[K] | ReadonlyArray<CSSProperties[K]>)
| ReadonlyArray<CSSProperties[K] & string>
| ((
props: Props
) => CSSProperties[K] | ReadonlyArray<CSSProperties[K] & string>)
}

export type CSSPseudos<Props = unknown> = {
Expand Down

0 comments on commit 27b03d8

Please sign in to comment.