ISPO SDK
    Preparing search index...

    Type Alias ProjectCommand<Input, Result>

    Markdown
    ProjectCommand: Readonly<ProjectCommandCatalogEntry> & {
        run(
            input: Input,
            options?: ProjectCommandLocalRunOptions,
        ): Promise<Result>;
    }

    Public command object: immutable callable metadata plus local .run(). The handler closure is deliberately not exposed.

    Type Parameters