@perspective-dev/viewer
    Preparing search index...

    The state of an entire custom_elements::PerspectiveViewerElement component and its Plugin.

    type ViewerConfig<V = string> = {
        aggregates: { [key in string]?: Aggregate };
        columns: (string | null)[];
        columns_config: { [key in string]?: ColumnConfigValues };
        expressions: Expressions;
        filter: Filter[];
        filter_op?: FilterReducer;
        group_by: string[];
        group_by_depth?: number | null;
        group_rollup_mode: GroupRollupMode;
        plugin: string;
        plugin_config: JsonValue;
        settings: boolean;
        sort: Sort[];
        split_by: string[];
        table: string | null;
        theme: string | null;
        title: string | null;
        version: V;
    }

    Type Parameters

    • V = string
    Index

    Properties

    aggregates: { [key in string]?: Aggregate }
    columns: (string | null)[]
    columns_config: { [key in string]?: ColumnConfigValues }
    expressions: Expressions
    filter: Filter[]
    filter_op?: FilterReducer
    group_by: string[]
    group_by_depth?: number | null
    group_rollup_mode: GroupRollupMode
    plugin: string
    plugin_config: JsonValue
    settings: boolean
    sort: Sort[]
    split_by: string[]
    table: string | null
    theme: string | null
    title: string | null
    version: V