/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * @see https://github.com/facebook/create-react-app/blob/master/packages/react-dev-utils/formatWebpackMessages.js?rgh-link-date=2020-11-26T14%3A34%3A25Z */ export declare type MessageType = 'errors' | 'warnings'; export declare type WebpackJSON = { [K in MessageType]: string[]; }; export declare type Result = { [K in MessageType]: string[]; }; export declare function formatWebpackMessages(json: any): { errors: any; warnings: any; }; //# sourceMappingURL=formatWebpackMessages.d.ts.map