jshiki
    Preparing search index...

    Type Alias JshikiExpression

    JshikiExpression: (scope?: Record<any, any>) => any

    A compiled, executable expression.

    const expression = jshiki.parse('foo.bar')
    expression({
    foo: { bar: 'baz' },
    }) // => 'baz'

    Type Declaration

      • (scope?: Record<any, any>): any
      • Parameters

        • Optionalscope: Record<any, any>

          The scope to use when evaluating the expression. The expression will be limited to accessing the properties of the scope.

        Returns any