Option Strict On
Option Explicit On

Imports System.Collections.Generic

Namespace Nexamas.UI.TextInput

    ''' <summary>
    ''' Optional syntax highlighter contract. Implementations must be pure:
    ''' no state mutation, no UI access, no controller access.
    ''' </summary>
    Friend Interface IMASTextSyntaxHighlighter
        Function GetSpans(text As String) As IReadOnlyList(Of MASTextSyntaxSpan)
    End Interface

End Namespace
