mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
|
import 'mithril-query/mithril-query';
|
||
|
|
||
|
declare global {
|
||
|
namespace jest {
|
||
|
interface Matchers<R> {
|
||
|
toHaveElement(selector: any): R;
|
||
|
toContainRaw(content: any): R;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|