mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-17 06:40:01 +02:00
11 lines
273 B
C#
11 lines
273 B
C#
using System;
|
|
using CefSharp;
|
|
|
|
namespace TweetDuck.Core{
|
|
interface ITweetDeckBrowser{
|
|
void RegisterBridge(string name, object obj);
|
|
void OnFrameLoaded(Action<IFrame> callback);
|
|
void ExecuteFunction(string name, params object[] args);
|
|
}
|
|
}
|