fix(core): update

This commit is contained in:
Philipp Kunz 2020-07-23 05:36:55 +00:00
parent 69afa1dfcb
commit 335717a025

View File

@ -14,7 +14,7 @@ export interface ISimpleRequest {
readonly searchParams: any; readonly searchParams: any;
username: string; username: string;
toString: () => string; toString: () => string;
toJSON(): () => string; toJSON: () => string;
}; };
} }