├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.d.ts ├── package.json ├── tsconfig.json └── typings ├── grandMA3.Appearances ├── functions.d.ts └── index.d.ts ├── grandMA3.DataPool ├── functions.d.ts ├── index.d.ts └── types │ ├── Layouts.d.ts │ ├── Plugins.d.ts │ ├── Sequences.d.ts │ └── index.d.ts ├── grandMA3.Patch ├── function.d.ts ├── index.d.ts └── types │ ├── FixtureTypes.d.ts │ └── index.d.ts ├── grandMA3.UserProfile ├── functions.d.ts ├── index.d.ts └── types │ ├── LayoutElementDefaultsCollect.d.ts │ └── index.d.ts ├── grandMA3.lua ├── enums │ ├── Enums.d.ts │ └── index.d.ts ├── functions.d.ts └── index.d.ts ├── grandMA3 ├── functions.d.ts ├── index.d.ts └── types │ ├── DataPools.d.ts │ ├── EnvArgs.d.ts │ ├── ImagePools.d.ts │ ├── Root.d.ts │ ├── ShowData.d.ts │ ├── UserProfiles.d.ts │ └── index.d.ts ├── index.d.ts └── lua.ftp ├── functions.d.ts └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | import './typings'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/grandMA3.Appearances/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.Appearances/functions.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.Appearances/index.d.ts: -------------------------------------------------------------------------------- 1 | import './functions'; 2 | -------------------------------------------------------------------------------- /typings/grandMA3.DataPool/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.DataPool/functions.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.DataPool/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.DataPool/index.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.DataPool/types/Layouts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.DataPool/types/Layouts.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.DataPool/types/Plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.DataPool/types/Plugins.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.DataPool/types/Sequences.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.DataPool/types/Sequences.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.DataPool/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.DataPool/types/index.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.Patch/function.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.Patch/function.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.Patch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.Patch/index.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.Patch/types/FixtureTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.Patch/types/FixtureTypes.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.Patch/types/index.d.ts: -------------------------------------------------------------------------------- 1 | import './FixtureTypes'; 2 | -------------------------------------------------------------------------------- /typings/grandMA3.UserProfile/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.UserProfile/functions.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.UserProfile/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.UserProfile/index.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.UserProfile/types/LayoutElementDefaultsCollect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.UserProfile/types/LayoutElementDefaultsCollect.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.UserProfile/types/index.d.ts: -------------------------------------------------------------------------------- 1 | import './LayoutElementDefaultsCollect'; 2 | -------------------------------------------------------------------------------- /typings/grandMA3.lua/enums/Enums.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.lua/enums/Enums.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.lua/enums/index.d.ts: -------------------------------------------------------------------------------- 1 | import './Enums'; 2 | -------------------------------------------------------------------------------- /typings/grandMA3.lua/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.lua/functions.d.ts -------------------------------------------------------------------------------- /typings/grandMA3.lua/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3.lua/index.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/functions.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/index.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/DataPools.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/DataPools.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/EnvArgs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/EnvArgs.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/ImagePools.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/ImagePools.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/Root.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/Root.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/ShowData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/ShowData.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/UserProfiles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/UserProfiles.d.ts -------------------------------------------------------------------------------- /typings/grandMA3/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/grandMA3/types/index.d.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /typings/lua.ftp/functions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LightYourWay/grandMA3-types/HEAD/typings/lua.ftp/functions.d.ts -------------------------------------------------------------------------------- /typings/lua.ftp/index.d.ts: -------------------------------------------------------------------------------- 1 | import './functions'; 2 | --------------------------------------------------------------------------------