Skip to content

Type Alias: ResourcefulIndexTableSlots

ts
type ResourcefulIndexTableSlots = {
  aggregations?: () => any;
  body-append: () => any;
  error-media: () => any;
  loading-media: (args: {
     percent: number;
  }) => any;
  no-data-actions: () => any;
  no-data-media: () => any;
  no-results-actions: () => any;
  no-results-media: () => any;
} & {
[slot: `item-${string}`]: (...args: [ItemKeySlot<any>]) => any;
};

Type Declaration

NameType
aggregations()?() => any
body-append()() => any
error-media()() => any
loading-media()(args: { percent: number; }) => any
no-data-actions()() => any
no-data-media()() => any
no-results-actions()() => any
no-results-media()() => any