This commit is contained in:
Johannes Loher 2021-07-08 08:00:58 +02:00
parent 26233d61ea
commit 05933af152
10 changed files with 22 additions and 15 deletions

View file

@ -8,11 +8,11 @@ import evaluateCheck from "../../src/module/rolls/check-evaluation";
class StubGame {
constructor() {
this.i18n = {
localize: (a: string) => a,
localize: (key: string) => key,
};
}
i18n: {
localize: (a: string) => string;
localize: (key: string) => string;
};
}