mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-08 20:34:05 +02:00
13 lines
332 B
C#
13 lines
332 B
C#
using System;
|
|
using CefSharp;
|
|
|
|
namespace TweetDuck.Core.Other.Interfaces{
|
|
interface ITweetDeckBrowser{
|
|
bool IsTweetDeckWebsite { get; }
|
|
|
|
void RegisterBridge(string name, object obj);
|
|
void OnFrameLoaded(Action<IFrame> callback);
|
|
void ExecuteFunction(string name, params object[] args);
|
|
}
|
|
}
|