Skip to content

Commit 7aa5790

Browse files
authored
Added support for bigint in ClassNameValue type
1 parent 361cf8c commit 7aa5790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/tw-join.ts

Lines changed: 1 addition & 1 deletion
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 | false | bigint
1212
type ClassNameArray = ClassNameValue[]
1313

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

0 commit comments

Comments
 (0)