blob: 6a50479caf3ace82ec0b9ffad2faaf6efadb4bb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { FilterHandler } from '../../../eventManager';
/**
* @ignore
*
* Not sure if it's the best way to hook into the app
* so for now disable filters.
*/
export default class JoplinFilters {
on(name: string, callback: FilterHandler): Promise<void>;
off(name: string, callback: FilterHandler): Promise<void>;
}
|