type github.com/evanw/esbuild/internal/fs.FS

23 uses

	github.com/evanw/esbuild/internal/fs (current package)
		fs.go#L25: func (e *Entry) Kind(fs FS) EntryKind {
		fs.go#L35: func (e *Entry) Symlink(fs FS) string {
		fs.go#L82: type FS interface {
		fs_mock.go#L19: func MockFS(input map[string]string) FS {
		fs_real.go#L62: func RealFS(options RealFSOptions) (FS, error) {

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L122: 	fs          fs.FS
		bundler.go#L129: 	fs                 fs.FS
		bundler.go#L520: 	fs fs.FS,
		bundler.go#L629: 	fs fs.FS,
		bundler.go#L733: 	fs fs.FS,
		bundler.go#L876: 	fs      fs.FS
		bundler.go#L890: func ScanBundle(log logger.Log, fs fs.FS, res resolver.Resolver, caches *cache.CacheSet, entryPoints []string, options config.Options) Bundle {
		linker.go#L63: 	fs          fs.FS
		linker.go#L376: 	fs fs.FS,

	github.com/evanw/esbuild/internal/cache
		cache_fs.go#L25: func (c *FSCache) ReadFile(fs fs.FS, path string) (string, error) {

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L125: 	fs      fs.FS
		resolver.go#L169: func NewResolver(fs fs.FS, log logger.Log, caches *cache.CacheSet, options config.Options) Resolver {

	github.com/evanw/esbuild/pkg/api
		api_impl.go#L311: func validateExternals(log logger.Log, fs fs.FS, paths []string) config.ExternalModules {
		api_impl.go#L478: func validatePath(log logger.Log, fs fs.FS, relPath string, pathKind string) string {
		api_impl.go#L1168: 	fs     fs.FS
		api_impl.go#L1280: func loadPlugins(fs fs.FS, log logger.Log, plugins []Plugin) (results []config.Plugin) {
		serve_other.go#L34: 	fs               fs.FS
		serve_other.go#L402: func prettyPrintPath(fs fs.FS, path string) string {