Skip to content

Commit

Permalink
i18n(zh-cn): Update integrations-reference.mdx (#9396)
Browse files Browse the repository at this point in the history
Co-authored-by: liruifengv <liruifeng1024@gmail.com>
  • Loading branch information
Nin3lee and liruifengv authored Sep 14, 2024
1 parent 686efba commit 2216a7f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/content/docs/zh-cn/reference/integrations-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,18 @@ declare global {

Astro 为未来的内置钩子保留了 `astro:` 前缀。请在命名时,为自定义钩子选择不同的前缀。

### `HookParameters`

你可以通过将钩子的名称传递给 `HookParameters` 实用工具类型来获取钩子参数的类型。在以下示例中,输入了函数的 `options` 参数后,匹配到了 `astro:config:setup` 挂钩的参数:

```ts /HookParameters(?:<.+>)?/
import type { HookParameters } from 'astro';
function mySetup(options: HookParameters<'astro:config:setup'>) {
options.updateConfig({ /* ... */ });
}
```

## 使用 `astro add` 安装

用户可以使用 [`astro add` 命令](/zh-cn/reference/cli-reference/#astro-add) 轻松地在他们的项目中添加集成和适配器。如果你想让别人可以使用这个工具安装你的集成,**在你的 `package.json` 中的 `keywords` 字段中添加 `astro-integration`**
Expand Down

0 comments on commit 2216a7f

Please sign in to comment.