mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
|
declare module "test/nbrowser/gristUtil-nbrowser";
|
||
|
|
||
|
// Adds missing type declaration to chai
|
||
|
declare namespace Chai {
|
||
|
interface AssertStatic {
|
||
|
notIncludeMembers<T>(superset: T[], subset: T[], message?: string): void;
|
||
|
}
|
||
|
}
|