TJSScrollContainerData: {
    class?: SvelteComponent;
    props?: object;
    scrollTop?: Writable<number>;
    styles?: {
        [key: string]: string | null;
    };
}

Type declaration

  • Optionalclass?: SvelteComponent

    A svelte component class used as the content component when there is no slotted component defined.

  • Optionalprops?: object

    An object to apply to any data defined Svelte component when there is no slotted component defined.

  • OptionalscrollTop?: Writable<number>

    A Svelte store that serializes the scroll top position of the scrollable container.

  • Optionalstyles?: {
        [key: string]: string | null;
    }

    Inline styles to assign to the container.

    • [key: string]: string | null