Last active
August 17, 2022 08:21
-
-
Save Balastrong/6784d2d12cf887c026a03bbaeec9011b to your computer and use it in GitHub Desktop.
wrand - types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type WeightedItem<T> = { | |
original: T; | |
weight: number; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment