|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
695 bytes
|
| Line | |
|---|
| 1 | import { Tap } from 'tapable';
|
|---|
| 2 | import { FilesMatch, Report } from './reporter';
|
|---|
| 3 | import { Issue } from './issue';
|
|---|
| 4 | interface ForkTsCheckerWebpackPluginState {
|
|---|
| 5 | issuesReportPromise: Promise<Report | undefined>;
|
|---|
| 6 | dependenciesReportPromise: Promise<Report | undefined>;
|
|---|
| 7 | issuesPromise: Promise<Issue[] | undefined>;
|
|---|
| 8 | dependenciesPromise: Promise<FilesMatch | undefined>;
|
|---|
| 9 | lastDependencies: FilesMatch | undefined;
|
|---|
| 10 | watching: boolean;
|
|---|
| 11 | initialized: boolean;
|
|---|
| 12 | webpackDevServerDoneTap: Tap | undefined;
|
|---|
| 13 | }
|
|---|
| 14 | declare function createForkTsCheckerWebpackPluginState(): ForkTsCheckerWebpackPluginState;
|
|---|
| 15 | export { ForkTsCheckerWebpackPluginState, createForkTsCheckerWebpackPluginState };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.