awesomewm.d.tl/types/inspect.d.tl

13 lines
292 B
Plaintext
Raw Normal View History

2022-08-20 12:25:59 +02:00
local record inspect
record InspectOptions
depth: number
newline: string
indent: string
process: function(item: any, path: {any}): any
end
metamethod __call: function(self: inspect, value: any, options: InspectOptions): string
end
return inspect