AngularTS
    Preparing search index...

    Interface InterpolationFunction

    interface InterpolationFunction {
        exp: string;
        expressions: string[];
        (context: unknown, cb?: (val: unknown) => void): unknown;
    }
    • Evaluate the interpolation.

      Parameters

      • context: unknown

        The scope/context

      • Optionalcb: (val: unknown) => void

        Optional callback when expressions change

      Returns unknown

    Index

    Properties

    Properties

    exp: string
    expressions: string[]