ajv-validator / ajv-validator/ajv-merge-patch

Type inference support

オープン
#43 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
JavaScript
スター
47
フォーク
19
PR マージ指標
30日以内にマージされた PR はありません

説明

Let's admit a simple base schema like this one:

```ts
const SnakeSchema = {
type: 'object',
properties: {
name: { type: 'string' },
foo_bar: { type: 'string' },
},
} as const;
```

I want the type inference to work within my application, so I use the `JTDDataType` utility.

```ts
import { JTDDataType } from 'ajv/dist/jtd';

const SnakeSchema = { /* ... */ } as const;

type Snake = JTDDataType;
```

Now, let's write a simple patch:

```ts
const KebabSchema = {
$patch: {
source: SnakeSchema,
with: [
{ op: 'move', from: '/properties/foo_bar', to: '/properties/fooBar' },
],
},
} as const;
```

The only way I found to get the infered type is by doing this:

```ts
type Kebab = Omit & {
fooBar: SnakeSchema['foo_bar'];
```

As it is not really DRY, I was wondering if there is something I miss in the docs... If not, maybe is there something that can be done in the project?

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。