aboutsummaryrefslogtreecommitdiff
path: root/api/JoplinWindow.d.ts
blob: 4cbdc64243f52d958dd1cdd74a549416d516608e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import Plugin from '../Plugin';
export default class JoplinWindow {
    private store_;
    constructor(_plugin: Plugin, store: any);
    /**
     * Loads a chrome CSS file. It will apply to the window UI elements, except
     * for the note viewer. It is the same as the "Custom stylesheet for
     * Joplin-wide app styles" setting. See the [Load CSS Demo](https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/load_css)
     * for an example.
     *
     * <span class="platform-desktop">desktop</span>
     */
    loadChromeCssFile(filePath: string): Promise<void>;
    /**
     * Loads a note CSS file. It will apply to the note viewer, as well as any
     * exported or printed note. It is the same as the "Custom stylesheet for
     * rendered Markdown" setting. See the [Load CSS Demo](https://github.com/laurent22/joplin/tree/dev/packages/app-cli/tests/support/plugins/load_css)
     * for an example.
     *
     * <span class="platform-desktop">desktop</span>
     */
    loadNoteCssFile(filePath: string): Promise<void>;
}