interface CallsWithNameConstraint {
    name: string;
    nameExact?: boolean;
    type: "name";
}

Properties

Properties

name: string

The name of the function being called.

nameExact?: boolean

Should we match the name exactly, or as a regex?

type: "name"