# PipelineEditor

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

## 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 pipeline steps with the specified tag
    ```typescript
  stepsByTag(tag: string): PipelineStep[]
  ```
