UNPKG

@sprucelabs/spruce-cli

Version:

Command line interface for building Spruce skills.

12 lines (10 loc) 313 B
import ImportService from './ImportService' export default class TypeCheckerService { private importer: ImportService public constructor(importer: ImportService) { this.importer = importer } public check = async (tsFile: string) => { await this.importer.importAll(tsFile) } }