Last active
December 17, 2024 01:22
-
-
Save nightcycle/3ecee1b598c4e1d26acd7a2899ff4350 to your computer and use it in GitHub Desktop.
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
--!nocheck | |
export type BenchmarkProfiler = { | |
start: (label: string) -> (), | |
stop: (t: number?) -> (), | |
} | |
export type BenchFunction<Parameter> = ( | |
profiler: BenchmarkProfiler, | |
parameter: Parameter | |
) -> () | |
export type BenchModule<Parameter> = { | |
ParameterGenerator: (() -> Parameter)?, | |
BeforeAll: (() -> ())?, | |
AfterAll: (() -> ())?, | |
BeforeEach: (() -> ())?, | |
AfterEach: (() -> ())?, | |
Functions: { [string]: BenchFunction<Parameter> }, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment