fixed type

This commit is contained in:
Miodec 2022-02-21 14:34:40 +01:00
parent 9c6f678748
commit 58a78d4496
2 changed files with 2 additions and 2 deletions

View file

@ -158,7 +158,7 @@ $("#quoteReportPopup .submit").on("click", async () => {
$(".pageTest #reportQuoteButton").click(async () => {
show({
quoteId: parseInt(TestWords.randomQuote?.id as string),
quoteId: TestWords.randomQuote?.id,
noAnim: false,
});
});

View file

@ -526,7 +526,7 @@ declare namespace MonkeyTypes {
text: string;
source: string;
length: number;
id: number | string;
id: number;
group?: number;
language: string;
}