@eagleoutice/flowr - v2.15.8
    Preparing search index...
    CallProps: {
        filter(
            this: void,
            stated: StatedProps | undefined,
            selector: PropSelector,
        ): StatedProps;
        hasAll(
            this: void,
            stated: StatedProps | undefined,
            selector: PropSelector,
        ): boolean;
        hasAny(
            this: void,
            stated: StatedProps | undefined,
            selector?: PropSelector,
        ): boolean;
        isCallProp: (this: void, selector: PropSelector) => selector is number;
        isEmptyMask(this: void, mask: PropMask): boolean;
        isSemanticTag: (
            this: void,
            selector: PropSelector,
        ) => selector is SemanticCallTag;
        join(
            this: void,
            props1: StatedProps | undefined,
            props2: StatedProps | undefined,
        ): StatedProps;
        key(this: void, selector: PropSelector): string;
        labels(this: void, stated: StatedProps | undefined): string[];
        mask(this: void, names: readonly string[]): PropMask;
        names(this: void, selector: PropSelector): string[];
        words(this: void, props: number | undefined): string[];
    }

    Helper functions to work with CallProps and SemanticCallTags of calls. All helpers use PropSelectors to identify call properties.

    Type Declaration