package
Version:
v0.2.8
Opens a new window with list of versions in this module.
Published: Jan 28, 2023
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type File struct {
Inputs map[string]*Input `json:"inputs,omitempty"`
Outputs map[string]*Output `json:"outputs,omitempty"`
}
type Import struct {
Path string `json:"path,omitempty"`
Kind string `json:"kind,omitempty"`
}
type Input struct {
Bytes int `json:"bytes,omitempty"`
Imports []*Import `json:"imports,omitempty"`
}
type Output struct {
Bytes int `json:"bytes,omitempty"`
Inputs map[string]*OutputInput `json:"inputs,omitempty"`
Imports []*Import `json:"imports,omitempty"`
Exports []string `json:"exports,omitempty"`
EntryPoint *string `json:"entryPoint,omitempty"`
}
type OutputInput struct {
BytesInOutput int `json:"bytesInOutput,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.