interface TabsConfiguration {
    callback?: null | Function;
    contentSelector: string;
    group?: string;
    initial: string;
    navSelector: string;
}

Properties

callback?: null | Function

An optional callback function that executes when the active tab is changed

contentSelector: string

The CSS selector used to target the content container for these tabs

group?: string

The name of the tabs group

initial: string

The tab name of the initially active tab

navSelector: string

The CSS selector used to target the navigation element for these tabs