Trilium Frontend API
    Preparing search index...

    Interface Provider<T>

    interface Provider<T> {
        defaultProps?: Partial<{ children?: ComponentChildren; value: T }>;
        displayName?: string;
        (
            props: RenderableProps<{ children?: ComponentChildren; value: T }>,
            context?: any,
        ): ComponentChildren;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    defaultProps?: Partial<{ children?: ComponentChildren; value: T }>
    displayName?: string