trilium
    Preparing search index...

    Base interface for the data/arguments for a given command (see CommandMappings).

    interface ExecuteCommandData<T> {
        ntxId?: null | string;
        resolve: (data: T) => void;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    ntxId?: null | string
    resolve: (data: T) => void