# Custom Extension Types

The extension registry is an open system, which can hold any Extension Manifest Type. This article describes how you can declare your types.\
Types can be declared for re-useability/maintainability or to open up for other package extensions.

## Manifest Type Declaration

A Manifest Type is declared via a TypeScript Interface, like shown below:

```typescript
import type { ManifestBase } from '@umbraco-cms/backoffice/extension-api';

export interface ManifestPreviewAppProvider extends ManifestBase {
    type: 'myPrefixedExtensionType';
}

// Declare the Manifest Type in the global UmbExtensionManifestMap interface:
declare global {
    interface UmbExtensionManifestMap {
        MyPrefixedExtensionManifest: MyExtensionManifestType;
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.umbraco.com/umbraco-cms/18.latest/extend-your-project/backoffice-extensions/extending-overview/custom-extension-type.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
