typescript-is icon indicating copy to clipboard operation
typescript-is copied to clipboard

Results 49 typescript-is issues
Sort by recently updated
recently updated
newest added

Should `equals` be able to process a generic nested property of a generic interface? I'm getting `false` when trying to evaluate the following object: ```typescript interface Int1 { partial: Partial...

Love this library. Thank you! Encountered an issue, where `typescript-is` is unable to parse and produce a `createEquals` for the following type: ```typescript import { createEquals } from "typescript-is" interface...

it would be cool if you could so something like this: ```ts interface Foo { foo: string bar?: number baz?: Bar | boolean } interface Bar { foo: boolean bar:...

Hi @woutervh-, and thanks for a fantastic OSS project! I have recently set up `typescript-is` in a new NextJs project, and am very happy with the results. However, my CI...

`const body: string | null = assertType(null);` This simple test will cause a TypeGuardError to be thrown.

After a lot of searching I couldn't find a library or tool that did what I wanted, so I started to build it myself when I realized that 90% of...

Hi, first of all thank you for your great library! I'm wondering if you can add another action that is not "pure assertion" but also help us to protect the...

I noticed that some generics don't work when fed to createAssertType(), although many other generics work perfectly. E.g. an example of what doesn't work: ```ts type Row = { value:...

I know you mentioned before that this strives to only work for serializable data. However, 😏 would it be possible, happily hidden behind an options flag, to not simply ignore...

```ts import {AssertType, ValidateClass} from 'typescript-is'; @ValidateClass() class Foo { constructor(@AssertType() foo: number) {} } new Foo("foo" as any) //no error ```