souzaramon

Results 15 issues of souzaramon

Hello, I have a questions about the naming of the interfaces used in the project. What exactly is the sufix RO, in the article for example, (ArticleData & ArticleRO) I'm...

There is a section in README.md talking about how to setup aws-sdk v2, but when installing the package a error requiring the version 3 shows up. Thats is confusing, why...

## Proposed changes (including videos or screenshots) - add max chats by agent test

stat: needs QA

```ts type Eq = (() => T extends X ? 1 : 2) extends () => T extends Y ? 1 : 2 ? true : false type Includes =...

answer
en
898

```ts type TupleToObject = { [V in T[number]]: V } ```

answer
en
11

```ts type MyParameters any> = T extends (...args: infer P) => any ? P: never ```

answer
en
3312

```ts type Unshift = [U, ...T] ```

answer
en
3060

```ts type First = T extends [infer R, ...unknown[]] ? R : never ```

answer
en
14

```ts type MyAwaited = T extends PromiseLike ? R extends PromiseLike ? MyAwaited : R : never ```

answer
en
189

```ts type Length = T["length"] ```

answer
en
18