@eagleoutice/flowr - v2.13.14
    Preparing search index...

    Interface SingleFileInvalidationEvent<Content>

    Invalidation event for a single file identified by filePath.

    oldContent contains the file content from immediately before the change that triggered this event. In other words, it is the pre-change content for this invalidation, not necessarily the content from the last completed analysis run.

    interface SingleFileInvalidationEvent<
        Content extends StringableContent = StringableContent,
    > {
        filePath: string;
        oldContent: Content | undefined;
        type: SingleFileInvalidate;
    }

    Type Parameters

    Index
    filePath: string
    oldContent: Content | undefined