Orca Note Plugin API Documentation
    Preparing search index...

    Type Alias CommandFn

    CommandFn: (...args: any[]) => void | Promise<void>

    Basic command function type that defines functions that can be executed as commands. Can be synchronous or asynchronous.

    Type declaration

      • (...args: any[]): void | Promise<void>
      • Parameters

        • ...args: any[]

        Returns void | Promise<void>