Skip to content

Commit aae31bb

Browse files
authored
Merge pull request #402 from LarsArtmann/patch-1
Added support for bigint in ClassNameValue type
2 parents 361cf8c + 57a5afb commit aae31bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/tw-join.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Original code has MIT license: Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
99
*/
1010

11-
export type ClassNameValue = ClassNameArray | string | null | undefined | 0 | false
11+
export type ClassNameValue = ClassNameArray | string | null | undefined | 0 | 0n | false
1212
type ClassNameArray = ClassNameValue[]
1313

1414
export function twJoin(...classLists: ClassNameValue[]): string

0 commit comments

Comments
 (0)