mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
import type { SinonStatic } from 'sinon';
|
|
|
|
declare global {
|
|
// eslint-disable-next-line no-var
|
|
var sinon: SinonStatic;
|
|
}
|
|
|
|
export default {};
|
|
|