Skip to content

Commit

Permalink
Merge pull request #402 from LarsArtmann/patch-1
Browse files Browse the repository at this point in the history
Added support for bigint in ClassNameValue type
  • Loading branch information
dcastil committed Apr 19, 2024
2 parents 361cf8c + 57a5afb commit aae31bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/tw-join.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Original code has MIT license: Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
*/

export type ClassNameValue = ClassNameArray | string | null | undefined | 0 | false
export type ClassNameValue = ClassNameArray | string | null | undefined | 0 | 0n | false
type ClassNameArray = ClassNameValue[]

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

0 comments on commit aae31bb

Please sign in to comment.