Hacker News new | past | comments | ask | show | jobs | submit login

Looks really nice! I have an existing codebase that I might try this on.

One feedback: Wouldn't

    interface MyComponentState {
      foo: number;
      bar: string;
      baz: number;
    }
Be a little more idiomatic than

    type MyComponentState = {
      foo: number;
      bar: string;
      baz: number;
    }

?



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: