SharpGen/Transform/IInteropSignatureTransform.cs (10 lines of code) (raw):

#nullable enable using System.Collections.Generic; using SharpGen.Model; namespace SharpGen.Transform { public interface IInteropSignatureTransform { IDictionary<PlatformDetectionType, InteropMethodSignature> GetInteropSignatures(CsCallable callable); } }