11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
/**
|
|
* @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: Function): Promise<void>;
|
|
off(name: string, callback: Function): Promise<void>;
|
|
}
|