util.human.units: Specify enum argument to format()

This commit is contained in:
Kim Alvefur 2021-07-05 13:18:14 +02:00
parent a8332d2427
commit 185b679953

View file

@ -1,5 +1,8 @@
local lib = record
enum logbase
"b" -- 1024
end
adjust : function (number, string) : number, string
format : function (number, string, string) : string
format : function (number, string, logbase) : string
end
return lib