mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-07 10:29:37 +00:00
15 lines
209 B
TypeScript
15 lines
209 B
TypeScript
/* eslint-disable no-var */
|
|
|
|
interface QtTransport {
|
|
send: (message: string) => void,
|
|
}
|
|
|
|
interface Qt {
|
|
webChannelTransport: QtTransport,
|
|
}
|
|
|
|
declare global {
|
|
var qt: Qt | undefined;
|
|
}
|
|
|
|
export { };
|