├── .gitattributes ├── .travis.yml ├── LICENSE ├── README.md ├── check-all.sh ├── scripts ├── README.md ├── deploy_luarocks.lua ├── deploy_luarocks.tl ├── read_luarocks.lua ├── read_luarocks.tl └── vendored │ ├── lfs.lua │ ├── lfs.tl │ ├── ltn12.d.tl │ └── ltn12.lua ├── tests └── busted │ ├── .busted │ ├── .gitignore │ ├── readme.txt │ ├── run_tests │ ├── src │ ├── assertions_spec.tl │ ├── busted_examples_spec.tl │ ├── matchers_spec.tl │ ├── mocks_spec.tl │ ├── spies_spec.tl │ ├── stub_spec.tl │ └── test_module.tl │ └── tlconfig.lua └── types ├── SLAXML ├── slaxdom.d.tl └── slaxml.d.tl ├── ansicolors └── ansicolors.d.tl ├── argparse └── argparse.d.tl ├── baton └── baton.d.tl ├── brinevector └── brinevector.d.tl ├── bump └── bump.d.tl ├── busted └── busted.d.tl ├── dkjson └── dkjson.d.tl ├── fenster └── fenster.d.tl ├── flux └── flux.d.tl ├── hump ├── camera.d.tl ├── gamestate.d.tl ├── signal.d.tl ├── timer.d.tl ├── vector-light.d.tl └── vector.d.tl ├── inspect └── inspect.d.tl ├── lanes └── lanes.d.tl ├── lester └── lester.d.tl ├── lgdbm └── gdbm.d.tl ├── lpeg ├── lpeg.d.tl └── re.d.tl ├── lua-cjson ├── cjson.d.tl └── cjson │ └── safe.d.tl ├── lua-conciseserialization └── CBOR.d.tl ├── lua-csv └── csv.d.tl ├── lua-gd └── gd.d.tl ├── lua-livr ├── LIVR.d.tl └── LIVR │ └── helpers.d.tl ├── lua-messagepack └── MessagePack.d.tl ├── lua-mqtt ├── mqtt311.d.tl └── mqtt5.d.tl ├── lua-ubjson └── ubjson.d.tl ├── luafilesystem └── lfs.d.tl ├── luajit ├── ffi.d.tl ├── jit.d.tl ├── string │ └── buffer.d.tl └── table │ ├── clear.d.tl │ └── new.d.tl ├── lualdap └── lualdap.d.tl ├── lualogging ├── logging.d.tl └── logging │ ├── console.d.tl │ ├── file.d.tl │ └── rolling_file.d.tl ├── luasec ├── ssl.d.tl ├── ssl │ └── https.d.tl └── tlconfig.lua ├── luasocket ├── ltn12.d.tl ├── mime.d.tl ├── socket.d.tl └── socket │ ├── ftp.d.tl │ ├── headers.d.tl │ ├── http.d.tl │ ├── smtp.d.tl │ └── url.d.tl ├── luasql └── postgres.d.tl ├── luassert ├── luassert.d.tl └── luassert │ ├── assert.d.tl │ ├── match.d.tl │ ├── mock.d.tl │ ├── spy.d.tl │ └── stub.d.tl ├── luasystem └── system.d.tl ├── lume └── lume.d.tl ├── luv └── luv.d.tl ├── md5 ├── des56.d.tl └── md5.d.tl ├── neovim ├── README.md ├── autogen ├── autogen_tl ├── lspconfig.d.tl ├── template └── vim.d.tl ├── penlight ├── pl.d.tl └── pl │ ├── Date.d.tl │ ├── List.d.tl │ ├── Map.d.tl │ ├── app.d.tl │ ├── array2d.d.tl │ ├── class.d.tl │ ├── compat.d.tl │ ├── comprehension.d.tl │ ├── config.d.tl │ ├── data.d.tl │ ├── dir.d.tl │ ├── file.d.tl │ ├── func.d.tl │ ├── input.d.tl │ ├── lapp.d.tl │ ├── lexer.d.tl │ ├── luabalanced.d.tl │ ├── operator.d.tl │ ├── path.d.tl │ ├── permute.d.tl │ ├── pretty.d.tl │ ├── seq.d.tl │ ├── sip.d.tl │ ├── strict.d.tl │ ├── stringio.d.tl │ ├── stringx.d.tl │ ├── tablex.d.tl │ ├── template.d.tl │ ├── test.d.tl │ ├── text.d.tl │ ├── types.d.tl │ ├── url.d.tl │ ├── utils.d.tl │ └── xml.d.tl ├── pllua └── pllua │ ├── elog.d.tl │ ├── error.d.tl │ ├── jsonb.d.tl │ ├── numeric.d.tl │ ├── paths.d.tl │ ├── pgtype.d.tl │ ├── spi.d.tl │ ├── time.d.tl │ ├── trigger.d.tl │ └── trusted.d.tl ├── reaper └── reaper.d.tl ├── rxi-json-lua └── json.d.tl ├── rxi-log-lua └── log.d.tl └── say └── say.d.tl /.gitattributes: -------------------------------------------------------------------------------- 1 | *.tl linguist-language=Lua 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/README.md -------------------------------------------------------------------------------- /check-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/check-all.sh -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/deploy_luarocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/deploy_luarocks.lua -------------------------------------------------------------------------------- /scripts/deploy_luarocks.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/deploy_luarocks.tl -------------------------------------------------------------------------------- /scripts/read_luarocks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/read_luarocks.lua -------------------------------------------------------------------------------- /scripts/read_luarocks.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/read_luarocks.tl -------------------------------------------------------------------------------- /scripts/vendored/lfs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/vendored/lfs.lua -------------------------------------------------------------------------------- /scripts/vendored/lfs.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/vendored/lfs.tl -------------------------------------------------------------------------------- /scripts/vendored/ltn12.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/vendored/ltn12.d.tl -------------------------------------------------------------------------------- /scripts/vendored/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/scripts/vendored/ltn12.lua -------------------------------------------------------------------------------- /tests/busted/.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/.busted -------------------------------------------------------------------------------- /tests/busted/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tests/busted/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/readme.txt -------------------------------------------------------------------------------- /tests/busted/run_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/run_tests -------------------------------------------------------------------------------- /tests/busted/src/assertions_spec.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/assertions_spec.tl -------------------------------------------------------------------------------- /tests/busted/src/busted_examples_spec.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/busted_examples_spec.tl -------------------------------------------------------------------------------- /tests/busted/src/matchers_spec.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/matchers_spec.tl -------------------------------------------------------------------------------- /tests/busted/src/mocks_spec.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/mocks_spec.tl -------------------------------------------------------------------------------- /tests/busted/src/spies_spec.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/spies_spec.tl -------------------------------------------------------------------------------- /tests/busted/src/stub_spec.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/stub_spec.tl -------------------------------------------------------------------------------- /tests/busted/src/test_module.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/src/test_module.tl -------------------------------------------------------------------------------- /tests/busted/tlconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/tests/busted/tlconfig.lua -------------------------------------------------------------------------------- /types/SLAXML/slaxdom.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/SLAXML/slaxdom.d.tl -------------------------------------------------------------------------------- /types/SLAXML/slaxml.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/SLAXML/slaxml.d.tl -------------------------------------------------------------------------------- /types/ansicolors/ansicolors.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/ansicolors/ansicolors.d.tl -------------------------------------------------------------------------------- /types/argparse/argparse.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/argparse/argparse.d.tl -------------------------------------------------------------------------------- /types/baton/baton.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/baton/baton.d.tl -------------------------------------------------------------------------------- /types/brinevector/brinevector.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/brinevector/brinevector.d.tl -------------------------------------------------------------------------------- /types/bump/bump.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/bump/bump.d.tl -------------------------------------------------------------------------------- /types/busted/busted.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/busted/busted.d.tl -------------------------------------------------------------------------------- /types/dkjson/dkjson.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/dkjson/dkjson.d.tl -------------------------------------------------------------------------------- /types/fenster/fenster.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/fenster/fenster.d.tl -------------------------------------------------------------------------------- /types/flux/flux.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/flux/flux.d.tl -------------------------------------------------------------------------------- /types/hump/camera.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/hump/camera.d.tl -------------------------------------------------------------------------------- /types/hump/gamestate.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/hump/gamestate.d.tl -------------------------------------------------------------------------------- /types/hump/signal.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/hump/signal.d.tl -------------------------------------------------------------------------------- /types/hump/timer.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/hump/timer.d.tl -------------------------------------------------------------------------------- /types/hump/vector-light.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/hump/vector-light.d.tl -------------------------------------------------------------------------------- /types/hump/vector.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/hump/vector.d.tl -------------------------------------------------------------------------------- /types/inspect/inspect.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/inspect/inspect.d.tl -------------------------------------------------------------------------------- /types/lanes/lanes.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lanes/lanes.d.tl -------------------------------------------------------------------------------- /types/lester/lester.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lester/lester.d.tl -------------------------------------------------------------------------------- /types/lgdbm/gdbm.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lgdbm/gdbm.d.tl -------------------------------------------------------------------------------- /types/lpeg/lpeg.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lpeg/lpeg.d.tl -------------------------------------------------------------------------------- /types/lpeg/re.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lpeg/re.d.tl -------------------------------------------------------------------------------- /types/lua-cjson/cjson.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-cjson/cjson.d.tl -------------------------------------------------------------------------------- /types/lua-cjson/cjson/safe.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-cjson/cjson/safe.d.tl -------------------------------------------------------------------------------- /types/lua-conciseserialization/CBOR.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-conciseserialization/CBOR.d.tl -------------------------------------------------------------------------------- /types/lua-csv/csv.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-csv/csv.d.tl -------------------------------------------------------------------------------- /types/lua-gd/gd.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-gd/gd.d.tl -------------------------------------------------------------------------------- /types/lua-livr/LIVR.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-livr/LIVR.d.tl -------------------------------------------------------------------------------- /types/lua-livr/LIVR/helpers.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-livr/LIVR/helpers.d.tl -------------------------------------------------------------------------------- /types/lua-messagepack/MessagePack.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-messagepack/MessagePack.d.tl -------------------------------------------------------------------------------- /types/lua-mqtt/mqtt311.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-mqtt/mqtt311.d.tl -------------------------------------------------------------------------------- /types/lua-mqtt/mqtt5.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-mqtt/mqtt5.d.tl -------------------------------------------------------------------------------- /types/lua-ubjson/ubjson.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lua-ubjson/ubjson.d.tl -------------------------------------------------------------------------------- /types/luafilesystem/lfs.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luafilesystem/lfs.d.tl -------------------------------------------------------------------------------- /types/luajit/ffi.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luajit/ffi.d.tl -------------------------------------------------------------------------------- /types/luajit/jit.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luajit/jit.d.tl -------------------------------------------------------------------------------- /types/luajit/string/buffer.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luajit/string/buffer.d.tl -------------------------------------------------------------------------------- /types/luajit/table/clear.d.tl: -------------------------------------------------------------------------------- 1 | return function(_tab: table) end 2 | -------------------------------------------------------------------------------- /types/luajit/table/new.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luajit/table/new.d.tl -------------------------------------------------------------------------------- /types/lualdap/lualdap.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lualdap/lualdap.d.tl -------------------------------------------------------------------------------- /types/lualogging/logging.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lualogging/logging.d.tl -------------------------------------------------------------------------------- /types/lualogging/logging/console.d.tl: -------------------------------------------------------------------------------- 1 | return require "logging".console 2 | -------------------------------------------------------------------------------- /types/lualogging/logging/file.d.tl: -------------------------------------------------------------------------------- 1 | return require "logging".file 2 | -------------------------------------------------------------------------------- /types/lualogging/logging/rolling_file.d.tl: -------------------------------------------------------------------------------- 1 | return require("logging").rolling_file 2 | -------------------------------------------------------------------------------- /types/luasec/ssl.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasec/ssl.d.tl -------------------------------------------------------------------------------- /types/luasec/ssl/https.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasec/ssl/https.d.tl -------------------------------------------------------------------------------- /types/luasec/tlconfig.lua: -------------------------------------------------------------------------------- 1 | return { 2 | include_dir = { 3 | "../luasocket" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /types/luasocket/ltn12.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/ltn12.d.tl -------------------------------------------------------------------------------- /types/luasocket/mime.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/mime.d.tl -------------------------------------------------------------------------------- /types/luasocket/socket.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/socket.d.tl -------------------------------------------------------------------------------- /types/luasocket/socket/ftp.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/socket/ftp.d.tl -------------------------------------------------------------------------------- /types/luasocket/socket/headers.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/socket/headers.d.tl -------------------------------------------------------------------------------- /types/luasocket/socket/http.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/socket/http.d.tl -------------------------------------------------------------------------------- /types/luasocket/socket/smtp.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/socket/smtp.d.tl -------------------------------------------------------------------------------- /types/luasocket/socket/url.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasocket/socket/url.d.tl -------------------------------------------------------------------------------- /types/luasql/postgres.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasql/postgres.d.tl -------------------------------------------------------------------------------- /types/luassert/luassert.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luassert/luassert.d.tl -------------------------------------------------------------------------------- /types/luassert/luassert/assert.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luassert/luassert/assert.d.tl -------------------------------------------------------------------------------- /types/luassert/luassert/match.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luassert/luassert/match.d.tl -------------------------------------------------------------------------------- /types/luassert/luassert/mock.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luassert/luassert/mock.d.tl -------------------------------------------------------------------------------- /types/luassert/luassert/spy.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luassert/luassert/spy.d.tl -------------------------------------------------------------------------------- /types/luassert/luassert/stub.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luassert/luassert/stub.d.tl -------------------------------------------------------------------------------- /types/luasystem/system.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luasystem/system.d.tl -------------------------------------------------------------------------------- /types/lume/lume.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/lume/lume.d.tl -------------------------------------------------------------------------------- /types/luv/luv.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/luv/luv.d.tl -------------------------------------------------------------------------------- /types/md5/des56.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/md5/des56.d.tl -------------------------------------------------------------------------------- /types/md5/md5.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/md5/md5.d.tl -------------------------------------------------------------------------------- /types/neovim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/neovim/README.md -------------------------------------------------------------------------------- /types/neovim/autogen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/neovim/autogen -------------------------------------------------------------------------------- /types/neovim/autogen_tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/neovim/autogen_tl -------------------------------------------------------------------------------- /types/neovim/lspconfig.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/neovim/lspconfig.d.tl -------------------------------------------------------------------------------- /types/neovim/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/neovim/template -------------------------------------------------------------------------------- /types/neovim/vim.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/neovim/vim.d.tl -------------------------------------------------------------------------------- /types/penlight/pl.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/penlight/pl.d.tl -------------------------------------------------------------------------------- /types/penlight/pl/Date.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".Date 2 | -------------------------------------------------------------------------------- /types/penlight/pl/List.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".List 2 | -------------------------------------------------------------------------------- /types/penlight/pl/Map.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".Map 2 | -------------------------------------------------------------------------------- /types/penlight/pl/app.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".app 2 | -------------------------------------------------------------------------------- /types/penlight/pl/array2d.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".array2d 2 | -------------------------------------------------------------------------------- /types/penlight/pl/class.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".class 2 | -------------------------------------------------------------------------------- /types/penlight/pl/compat.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".compat 2 | -------------------------------------------------------------------------------- /types/penlight/pl/comprehension.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".comprehension 2 | -------------------------------------------------------------------------------- /types/penlight/pl/config.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".config 2 | -------------------------------------------------------------------------------- /types/penlight/pl/data.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".data 2 | -------------------------------------------------------------------------------- /types/penlight/pl/dir.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".dir 2 | -------------------------------------------------------------------------------- /types/penlight/pl/file.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".file 2 | -------------------------------------------------------------------------------- /types/penlight/pl/func.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".func 2 | -------------------------------------------------------------------------------- /types/penlight/pl/input.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".input 2 | -------------------------------------------------------------------------------- /types/penlight/pl/lapp.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".lapp 2 | -------------------------------------------------------------------------------- /types/penlight/pl/lexer.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".lexer 2 | -------------------------------------------------------------------------------- /types/penlight/pl/luabalanced.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".luabalanced 2 | -------------------------------------------------------------------------------- /types/penlight/pl/operator.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".operator 2 | -------------------------------------------------------------------------------- /types/penlight/pl/path.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".path 2 | -------------------------------------------------------------------------------- /types/penlight/pl/permute.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".permute 2 | -------------------------------------------------------------------------------- /types/penlight/pl/pretty.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".pretty 2 | -------------------------------------------------------------------------------- /types/penlight/pl/seq.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".seq 2 | -------------------------------------------------------------------------------- /types/penlight/pl/sip.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".sip 2 | -------------------------------------------------------------------------------- /types/penlight/pl/strict.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".strict 2 | -------------------------------------------------------------------------------- /types/penlight/pl/stringio.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".stringio 2 | -------------------------------------------------------------------------------- /types/penlight/pl/stringx.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".stringx 2 | -------------------------------------------------------------------------------- /types/penlight/pl/tablex.d.tl: -------------------------------------------------------------------------------- 1 | return require("pl").tablex 2 | -------------------------------------------------------------------------------- /types/penlight/pl/template.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".template 2 | -------------------------------------------------------------------------------- /types/penlight/pl/test.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".test 2 | -------------------------------------------------------------------------------- /types/penlight/pl/text.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".text 2 | -------------------------------------------------------------------------------- /types/penlight/pl/types.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".types 2 | -------------------------------------------------------------------------------- /types/penlight/pl/url.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".url 2 | -------------------------------------------------------------------------------- /types/penlight/pl/utils.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".utils 2 | -------------------------------------------------------------------------------- /types/penlight/pl/xml.d.tl: -------------------------------------------------------------------------------- 1 | return require "pl".xml 2 | -------------------------------------------------------------------------------- /types/pllua/pllua/elog.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/elog.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/error.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/error.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/jsonb.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/jsonb.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/numeric.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/numeric.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/paths.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/paths.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/pgtype.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/pgtype.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/spi.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/spi.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/time.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/time.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/trigger.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/trigger.d.tl -------------------------------------------------------------------------------- /types/pllua/pllua/trusted.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/pllua/pllua/trusted.d.tl -------------------------------------------------------------------------------- /types/reaper/reaper.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/reaper/reaper.d.tl -------------------------------------------------------------------------------- /types/rxi-json-lua/json.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/rxi-json-lua/json.d.tl -------------------------------------------------------------------------------- /types/rxi-log-lua/log.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/rxi-log-lua/log.d.tl -------------------------------------------------------------------------------- /types/say/say.d.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teal-language/teal-types/HEAD/types/say/say.d.tl --------------------------------------------------------------------------------