Jamie Birch

Results 104 comments of Jamie Birch

Still the case in `@react-navigation/core/lib/typescript/src/types.d.ts` in `@react-navigation/[email protected]`, and no definition of what the ScreenOptions are in the 5.x docs. In each occurrence across the typings, ScreenOptions is defined as a...

I'm afraid I haven't been actively working on Svelte NodeGUI for over a year now, and it never received a great amount of usage, so I probably won't be getting...

I really don't want to have to write out the `interface ComponentDef{ props: {} }` and line it up with each one of my exports. Svelte does so well in...

Another quick one, as I read it in some of the related issues: I've had no end of trouble using JSDoc comments to type things, including the `@template` option. While...

How effectively is rotation handled now? Thinking of using this library after finding that `react-native-actions-sheet` and one or two other libraries don't support rotation either. Related issue from 2017, still...

Here's my repo for a React Native demo, which also integrates TypeScript: https://github.com/shirakaba/react-native-typescript-2d-game It's an Expo app, so you can even try it out via the Expo link: https://exp.host/@bottledlogic/the-box No...

This is essentially how you'd do it: ```js // Import AppKit to get access to its symbols (like NSApplication) const objc = require('objc'); objc.import('AppKit'); // Once the application has started,...

Just to note that with bindings to C++ (or technically Objective-C, though would limit to iOS/macOS), it would become possible to create bindings for JSI (JavaScript Interface; a library originally...

> Could the JSI bindings used by https://github.com/triniwiz/nativescript-mason be reused @shirakaba? Oh, I hadn't realised that was @triniwiz's approach! Yeah, something exactly like that 😂🙇‍♂️

> @shirakaba Presumably C bindings would work for you? Presumably! Although I defer to Osei at this point as he seems to have got it bridged all the way to...