jellyfish-web/src/components/homesections/sections/section.d.ts

12 lines
319 B
TypeScript
Raw Normal View History

2023-10-02 12:22:36 -04:00
import type { BaseItemDto } from '@jellyfin/sdk/lib/generated-client/models/base-item-dto';
export interface SectionOptions {
enableOverflow: boolean
}
export type SectionContainerElement = {
fetchData: () => void
getItemsHtml: (items: BaseItemDto[]) => void
parentContainer: HTMLElement
} & Element;