mirror of
https://github.com/godotengine/godot-csharp-visualstudio.git
synced 2026-01-01 01:48:18 +03:00
13 lines
365 B
C#
13 lines
365 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace GodotCompletionProviders
|
|
{
|
|
public interface IProviderContext
|
|
{
|
|
ILogger GetLogger();
|
|
bool AreCompletionsEnabledFor(CompletionKind completionKind);
|
|
bool CanRequestCompletionsFromServer();
|
|
Task<string[]> RequestCompletion(CompletionKind completionKind, string absoluteFilePath);
|
|
}
|
|
}
|