11 lines
245 B
Go
11 lines
245 B
Go
package printer
|
|
|
|
import (
|
|
"github.com/microsoft/typescript-go/internal/ast"
|
|
"github.com/microsoft/typescript-go/internal/tspath"
|
|
)
|
|
|
|
type SourceFileMetaDataProvider interface {
|
|
GetSourceFileMetaData(path tspath.Path) *ast.SourceFileMetaData
|
|
}
|