Files
kjol/tools/tsgo/internal/sourcemap/source.go
2026-07-09 16:50:43 -04:00

10 lines
168 B
Go

package sourcemap
import "github.com/microsoft/typescript-go/internal/core"
type Source interface {
Text() string
FileName() string
ECMALineMap() []core.TextPos
}