feat: child webview

This commit is contained in:
2024-03-16 15:05:06 +07:00
parent 16e6d234e5
commit 46cc01e0ee
37 changed files with 1686 additions and 1403 deletions

View File

@@ -1,3 +1,5 @@
import { type Webview } from "@tauri-apps/api/webview";
export interface Settings {
autoupdate: boolean;
nsecbunker: boolean;
@@ -81,9 +83,16 @@ export interface RichContent {
}
export interface LumeColumn {
id: number;
title: string;
content: string;
name: string;
description?: string;
author?: string;
logo?: string;
x?: number;
y?: number;
width?: number;
height?: number;
window?: Webview;
}
export interface Opengraph {