util.roles: Add Teal interface declaration

This commit is contained in:
Kim Alvefur 2022-08-12 22:09:09 +02:00
parent 1fac00b2af
commit 2b0676396d

32
teal-src/util/roles.d.tl Normal file
View file

@ -0,0 +1,32 @@
local record util_roles
type context = any
record Role
id : string
name : string
description : string
default : boolean
priority : number -- or integer?
permissions : { string : boolean }
may : function (Role, string, context)
clone : function (Role, role_config)
set_permission : function (Role, string, boolean, boolean)
end
is_role : function (any) : boolean
record role_config
name : string
description : string
default : boolean
priority : number -- or integer?
inherits : { Role }
permissions : { string : boolean }
end
new : function (role_config, Role) : Role
end
return util_roles