mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-10 15:13:02 -04:00
add function to the reporter GUI
This commit is contained in:
parent
3798b628dd
commit
eaa3072110
5 changed files with 118 additions and 8 deletions
|
@ -13,12 +13,16 @@ import { TypeWebpackSearchHistory } from "@webpack";
|
|||
interface EvaledPatch extends Patch {
|
||||
id: number | string;
|
||||
}
|
||||
interface ErroredPatch extends EvaledPatch {
|
||||
oldModule: string,
|
||||
newModule: string;
|
||||
}
|
||||
interface ReporterData {
|
||||
failedPatches: {
|
||||
foundNoModule: Patch[];
|
||||
hadNoEffect: EvaledPatch[];
|
||||
undoingPatchGroup: EvaledPatch[];
|
||||
erroredPatch: EvaledPatch[];
|
||||
erroredPatch: ErroredPatch[];
|
||||
};
|
||||
failedWebpack: Record<TypeWebpackSearchHistory, string[][]>;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue