Automagically converts ApiBlueprint specs to Flowtype type definition files!
Example:
## Person (object)
- id: 123 (number, nullable)
- name: Jack (string, required)
- surname: Wall (string, required)
- hobbies (array[string])
- tags (array)
- hello (string)
- 42 (number)
Output:
// @flow
type Person = {
id?: ?number,
name: string,
surname: string,
hobbies?: Array<string>,
tags?: Array<string | number>
};
npm install blueprint2flow
blueprint2flow my/service.apib
I'd love for you to contribute to this project.
- If you find a bug, please open an issue with a failing test or submit a fix via a pull request
- If you have a feature request, open an issue, or submit an implementation via a pull request
- If you want to contribute, submit a pull request
Thanks!