We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running
$ flowgen --flow-typed-format build/focus.d.ts Parsing focus Missing node parse ExportDeclaration
Doesn't produce any output file. However,
$ flowgen build/focus.d.ts Parsing focus Missing node parse ExportDeclaration
does.
declare type FakeEventType = { keyCode: number, preventDefault(): void }; export type KeyDownEventType = { key: number, target?: HTMLElement, originalEvent: KeyboardEvent | FakeEventType | MouseEvent }; declare var focus: (toFocus: string) => void; declare var fakeKeyDown: (fakeEvent: FakeEventType) => boolean; declare var fakeEnter: () => boolean; declare var fakeReturn: () => boolean;
$ flowgen -V 1.3.0
focus.d.ts
declare type FakeEventType = { keyCode: number; preventDefault(): void; }; export declare type KeyDownEventType = { key: number; target?: HTMLElement; originalEvent: KeyboardEvent | FakeEventType | MouseEvent; }; declare const focus: (toFocus: string) => void; declare const fakeKeyDown: (fakeEvent: FakeEventType) => boolean; declare const fakeEnter: () => boolean; declare const fakeReturn: () => boolean; export { focus, fakeKeyDown, fakeEnter, fakeReturn }; //# sourceMappingURL=focus.d.ts.map
The text was updated successfully, but these errors were encountered:
I think it works
Sorry, something went wrong.
It just doesn't support directory name
Fixed in #73
No branches or pull requests
Running
Doesn't produce any output file.
However,
does.
focus.d.ts
The text was updated successfully, but these errors were encountered: