@dark-engine/platform-desktop
Version:
Dark renderer to desktop platforms like Windows, Linux, macOS via Nodegui and Qt
15 lines (14 loc) • 594 B
TypeScript
import { type QTextBrowserSignals, QTextBrowser } from '@nodegui/nodegui';
import { type ComponentFactory, type Ref } from '@dark-engine/core';
import type { WidgetProps, WithStandardProps } from '../shared';
export type TextBrowserProps = WithStandardProps<
{
ref?: Ref<TextBrowserRef>;
html: string;
} & WidgetProps
>;
export type TextBrowserRef = QDarkTextBrowser;
export type TextBrowserSignals = QTextBrowserSignals;
declare const TextBrowser: ComponentFactory<TextBrowserProps>;
declare class QDarkTextBrowser extends QTextBrowser {}
export { TextBrowser, QDarkTextBrowser };