Skip to content

Commit 49808e2

Browse files
committed
fix: type definitions
1 parent d948713 commit 49808e2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

types/null-ls/init.tl

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
11
local record NullLs
22
record Source
33
name: string
4+
meta: Meta
45
method: MethodKind
6+
filetypes: {string}
57
generator: Generator
68
end
79

10+
record Meta
11+
url: string
12+
description: string
13+
end
14+
815
record Generator
916
fn: function(Params): {Action}
17+
opts: Opts
18+
19+
record Opts
20+
runtime_condition: function(Params)
21+
end
1022
end
1123

1224
record Action

0 commit comments

Comments
 (0)