UNPKG

fork-ts-checker-webpack-plugin

Version:
19 lines (18 loc) 797 B
import type { AbortController } from 'node-abort-controller'; import type { FullTap } from 'tapable'; import type { FilesChange } from './files-change'; import type { FilesMatch } from './files-match'; import type { Issue } from './issue'; interface ForkTsCheckerWebpackPluginState { issuesPromise: Promise<Issue[] | undefined>; dependenciesPromise: Promise<FilesMatch | undefined>; abortController: AbortController | undefined; aggregatedFilesChange: FilesChange | undefined; lastDependencies: FilesMatch | undefined; watching: boolean; initialized: boolean; iteration: number; webpackDevServerDoneTap: FullTap | undefined; } declare function createPluginState(): ForkTsCheckerWebpackPluginState; export { ForkTsCheckerWebpackPluginState, createPluginState };