├── LICENSE ├── README.md ├── config.d.ts ├── index.d.ts ├── typescriptle.d.ts └── wordlist.d.ts /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/typescriptle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/typescriptle/HEAD/README.md -------------------------------------------------------------------------------- /config.d.ts: -------------------------------------------------------------------------------- 1 | export type WordNumber = 3122; 2 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/typescriptle/HEAD/index.d.ts -------------------------------------------------------------------------------- /typescriptle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/typescriptle/HEAD/typescriptle.d.ts -------------------------------------------------------------------------------- /wordlist.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/typescriptle/HEAD/wordlist.d.ts --------------------------------------------------------------------------------