tauri-plugin-quicklook 0.1.0

A Tauri plugin providing APIs to display and manage the macOS QuickLookUI Preview Pane.
1
2
3
4
5
6
7
8
9
10
11
const COMMANDS: &[&str] = &[
    "set_preview_items",
    "set_preview_items_and_show",
    "show_preview_pane",
    "hide_preview_pane",
    "toggle_preview_pane",
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}