mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
9 lines
238 B
C#
9 lines
238 B
C#
using TweetLib.Browser.CEF.Data;
|
|
|
|
namespace TweetLib.Browser.CEF.Interfaces {
|
|
public interface IResourceHandlerFactory<T> {
|
|
T CreateResourceHandler(ByteArrayResource resource);
|
|
string GetMimeTypeFromExtension(string extension);
|
|
}
|
|
}
|