@universal-ember/table
    Preparing search index...

    Function headlessTable


    Public API


    • Represents a UI-less version of a table

      For use for building tables in ui frameworks.

      The first argument is the object that owns the table. The table is destroyed with that object, and uses that object's owner.

      Type Parameters

      • T = unknown

      Parameters

      Returns Table<T>

      import { headlessTable } '@universal-ember/table';

      class MyImplementation {
      table = headlessTable(this, {
      // your config here
      })
      }