KC's Workspace
    Preparing search index...

    This is either an export = or an export default declaration. Unless isExportEquals is set, this node was parsed as an export default.

    interface ExportAssignment {
        _declarationBrand: any;
        _jsdocContainerBrand: any;
        _statementBrand: any;
        end: number;
        expression: Expression;
        flags: NodeFlags;
        isExportEquals?: boolean;
        kind: ExportAssignment;
        modifiers?: NodeArray<ModifierLike>;
        name?: Identifier | StringLiteral | NumericLiteral;
        parent: SourceFile;
        pos: number;
        forEachChild<T>(
            cbNode: (node: Node) => T | undefined,
            cbNodeArray?: (nodes: NodeArray<Node>) => T | undefined,
        ): T | undefined;
        getChildAt(index: number, sourceFile?: SourceFile): Node;
        getChildCount(sourceFile?: SourceFile): number;
        getChildren(sourceFile?: SourceFile): readonly Node[];
        getEnd(): number;
        getFirstToken(sourceFile?: SourceFile): Node | undefined;
        getFullStart(): number;
        getFullText(sourceFile?: SourceFile): string;
        getFullWidth(): number;
        getLastToken(sourceFile?: SourceFile): Node | undefined;
        getLeadingTriviaWidth(sourceFile?: SourceFile): number;
        getSourceFile(): SourceFile;
        getStart(sourceFile?: SourceFile, includeJsDocComment?: boolean): number;
        getText(sourceFile?: SourceFile): string;
        getWidth(sourceFile?: SourceFileLike): number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _declarationBrand: any
    _jsdocContainerBrand: any
    _statementBrand: any
    end: number
    expression: Expression
    flags: NodeFlags
    isExportEquals?: boolean
    modifiers?: NodeArray<ModifierLike>
    parent: SourceFile
    pos: number

    Methods