zotero-better-notes/test/typings/global.d.ts

8 lines
168 B
TypeScript

import type * as chai from "chai";
declare global {
const expect: typeof chai.expect;
const assert: typeof chai.assert;
const debug: (...data: any[]) => void;
}