Results 16 comments of yinz

To be honest, I tend to confuse errors and exceptions at work,but I think they are very different

> ```ts > export interface NPM { > name: string > "dist-tag": { > [tag: string]: string > } > maintainers: { > name: string > email: string > avatar:...

[Prisma's introspect](https://www.prisma.io/docs/concepts/components/introspection) has a very good experience We can try to use the [`OpenAPI(swagger3)`](https://swagger.io/specification/) specification, so that clients in other languages can also consume

> warning.js:44 Warning: This synthetic event is reused for performance reasons. If you're seeing this, you're adding a new property in the synthetic event object. The property is never released....

If you want to move elements in a list, consider using fractional indexing for now. --- - https://www.figma.com/blog/realtime-editing-of-ordered-sequences/#fractional-indexing - https://github.com/rocicorp/fractional-indexing

> @TkDodo I think they use a format which is also compatible with a famous desktop docs program for mac (but I forget the name of it right now!). >...

@Kujo-Jotaro-AAAAA ```tsx const Drag = () => { const [info, ref] = useDrag({ type: "a", collect: (monitor) => { return { position: monitor.getClientOffset(), isDragging: monitor.isDragging() }; } }); return (...

> This looks like a feature request for https://github.com/tc39/proposal-decorator-metadata, which is a separate proposal from https://github.com/tc39/proposal-decorators. Thanks for your reply, you are right. It was me who confused the two...