1.0.1 • Published 6 years ago

types-lua v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Types Lua

npm Travis

TypeScript definitions for Lua 5.3 standard library.

Installation

  1. Get Lua Types from npm
yarn add -D types-lua
# or
npm install -D types-lua
  1. Modify your tsconfig.json
{
  "compilerOptions": {
    "typeRoots": ["@types", "node_modules/types-lua/types"]
  },
  "include": ["src/**/*.ts"]
}