# Facade API

> Enable the PDF Facade before creating the application API object.

- Human documentation: [https://docs.univer.ai/guides/pdfs/getting-started/facade](https://docs.univer.ai/guides/pdfs/getting-started/facade)

- Agent Markdown: [https://docs.univer.ai/guides/pdfs/getting-started/facade.md](https://docs.univer.ai/guides/pdfs/getting-started/facade.md)

- Requested language: `en-US`

- Content language: `en-US`

- Documentation version: `1.0.0-rc.0`

- Source: [pdfs/getting-started/facade.mdx](https://github.com/dream-num/documentation/blob/dev/content/guides/pdfs/getting-started/facade.mdx)

---

The getting-started responsibility is only to wire the PDF Facade into your application. Register `UniverPdfsPlugin` for the PDF unit model, then import the side-effect entry before calling `FUniver.newAPI()`.

## Enable the PDF Facade

```ts
import { FUniver } from '@univerjs/core/facade'

import '@univerjs-pro/pdfs/facade'

const univerAPI = FUniver.newAPI(univer)
```

The side-effect import extends `FUniver` and `univerAPI.Enum` with PDF methods and enums.

Continue with the [Univer PDFs API](https://docs.univer.ai/guides/pdfs/features/core/pdfs-api.md) for creating, finding, saving, and editing PDF units.
