# PipelineEditor

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.4.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire)

Provides an ATS-first editor for pipeline configuration callbacks.

## Definition

```typescript
interface PipelineEditor {
  steps(): PipelineStep[];
  stepsByTag(tag: string): PipelineStep[];
}
```

## Methods

- [steps](/reference/api/typescript/aspire.hosting/pipelineeditor/steps.md) -- `method` -- Gets all configured pipeline steps.
    ```typescript
  steps(): PipelineStep[]
  ```
- [stepsByTag](/reference/api/typescript/aspire.hosting/pipelineeditor/stepsbytag.md) -- `method` -- Gets all pipeline steps that have the specified tag.
    ```typescript
  stepsByTag(tag: string): PipelineStep[]
  ```
