UNPKG

karma-typescript

Version:

Simplifying running unit tests with coverage for Typescript projects.

12 lines (11 loc) 449 B
import { ConfigOptions } from "karma"; import { Bundler } from "../bundler/bundler"; import { Resolver } from "../bundler/resolve/resolver"; import { Configuration } from "../shared/configuration"; export declare class Framework { create: (karmaConfig: ConfigOptions, helper: any, logger: any) => void; private log; private stringify; constructor(bundler: Bundler, config: Configuration, resolver: Resolver); private replacer; }