Represents a source from a single file

interface File {
    body?: Statement[];
    imports?: ImportDeclaration[];
    name?: string;
    package?: PackageClause;
    type?: string;
}

Properties

body?: Statement[]

List of Flux statements

imports?: ImportDeclaration[]

A list of package imports

name?: string

The name of the file.

package?: PackageClause
type?: string
MMNEPVFCICPMFPCPTTAAATR