using Microsoft.Ccr.Core; namespace Roblox; public interface IAsyncDictionary { void Add(TKey key, TValue value, Port result); void ContainsKey(TKey key, Port result); void Remove(TKey key, Port result); void TryGetValue(TKey key, PortSet result); void GetOrCreate(TKey key, Port result); }