mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
|
|
export interface WebviewElement extends Element {
|
||
|
|
getURL(): string;
|
||
|
|
isLoading(): boolean;
|
||
|
|
capturePage(): Promise<NativeImage>
|
||
|
|
executeJavaScript(code: string): Promise<unknown>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface NativeImage {
|
||
|
|
toDataURL(): string;
|
||
|
|
}
|