mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* Add types for kahoot.js-updated All of the class is documented except for the events and their responses. The return values are being found by running the code as opposed to looking through the project's source. * Add missing properties and classes * Add some tests and fix dtslint errors * Fix KahootOptions interface * Add async tests * Add some missing types and event overloads * Add QuizEnd and Podium events * Add TeamTalk event * Add all missing events * Merge 2FA overloads * Make settings optional and add `| undefined` to optional props * Change how listeners are defined Changes from defining listeners with an overload for each one to using generics. * Add tests for properties on Kahoot instances * Add remaining EventEmitter functions * Move nemesis interface contents directly to QuestionEnd * Test more instance properties * Fix dtslint errors
17 lines
432 B
JSON
17 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es6"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": ["../"],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": ["index.d.ts", "kahoot.js-updated-tests.ts"]
|
|
}
|