diff options
Diffstat (limited to 'lib/compilers/kotlin.ts')
-rw-r--r-- | lib/compilers/kotlin.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compilers/kotlin.ts b/lib/compilers/kotlin.ts index 9b1bab103..51a8bb509 100644 --- a/lib/compilers/kotlin.ts +++ b/lib/compilers/kotlin.ts @@ -24,6 +24,7 @@ import {BypassCache} from '../../types/compilation/compilation.interfaces.js'; import type {PreliminaryCompilerInfo} from '../../types/compiler.interfaces.js'; +import {ExecutableExecutionOptions} from '../../types/execution/execution.interfaces.js'; import type {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces.js'; import {KotlinParser} from './argument-parsers.js'; @@ -94,7 +95,7 @@ export class KotlinCompiler extends JavaCompiler { * * TODO(supergrecko): Find a better fix than this bandaid for execution */ - override async handleInterpreting(key, executeParameters) { + override async handleInterpreting(key, executeParameters: ExecutableExecutionOptions) { const alteredKey = { ...key, options: ['-include-runtime', '-d', 'example.jar'], |