kibana/docs/development/plugins/embeddable/public/kibana-plugin-plugins-embeddable-public.embeddableinput.md
Kibana Machine 32ebd0af7b
[Data cleanup] unify serializable state (#107745) (#108020)
* Use Serializable from package

* Rename to align with core

* fix

* more replacements

* docssss

* fix

* Move it to @kbn/utility-types and remove core export

* buildy build

* tests

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>

Co-authored-by: Liza Katz <lizka.k@gmail.com>
2021-08-10 13:33:44 +00:00

718 B

Home > kibana-plugin-plugins-embeddable-public > EmbeddableInput

EmbeddableInput type

Signature:

export declare type EmbeddableInput = {
    viewMode?: ViewMode;
    title?: string;
    id: string;
    lastReloadRequestTime?: number;
    hidePanelTitles?: boolean;
    enhancements?: SerializableRecord;
    disabledActions?: string[];
    disableTriggers?: boolean;
    searchSessionId?: string;
    syncColors?: boolean;
    executionContext?: KibanaExecutionContext;
};