cristianoc / ReasonablyTyped

:diamond_shape_with_a_dot_inside: Converts Flow and TypeScript definitions to Reason interfaces

Home Page:https://reasonablytyped.github.io/ReasonablyTyped/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

  $ npm install --global reasonably-typed

Converts TypeScript and Flow definitions to Reason interfaces


Take your Flow or TypeScript definition

// class.js
declare module 'classes' {
  declare type State = {
    id: number,
    storeName: string
  };

  declare export class Store {
    constructor(initialState: State): Store;
    state: State;
    update(nextState: State): void;
  }
}

Run retyped

$ retyped class.js

Get Reason

/* Module classes */

type state = Js.t {. id : float, storeName : string};

module Store = {
  type t = Js.t {. state : state, update : (state => unit) [@bs.meth]};
  external make : state => t = "Store" [@@bs.new] [@@bs.module "classes"];
};

Docs

Examples

TypeScript

TypeScript has a similar workflow. Compile your TypeScript file with:

$ retyped my-definition.d.ts

Command-line Usage
Usage:
  $ retyped ...files

Examples:
  $ retyped file1.js file2.js file3.d.ts                                           [boolean]

Usage as a library ReasonablyTyped also exports a library for use! See the example below:
// lib-usage.js
import * as ReasonablyTyped from 'reasonably-typed'

const libSrc = fs.readFileSync('lib.js').toString()
const bsInterface = ReasonablyTyped.compile(libSrc)

format (code: string) => string

Formats a block of code using refmt

compile (code: string, filename?: string) => string

Compiles a libdef, formats the result, and handles errors cleanly

Development

See DEVELOPING and CONTRIBUTING.

Status

CircleCI

Roadmap

  • Basic types like string
  • Function types
  • Record types
  • Literals as types
  • Union types
  • Instersection types
  • Named types
  • Optional parameters
  • Classes
  • Generics
  • Built-ins like Promises
  • React components

About

:diamond_shape_with_a_dot_inside: Converts Flow and TypeScript definitions to Reason interfaces

https://reasonablytyped.github.io/ReasonablyTyped/

License:MIT License


Languages

Language:OCaml 86.5%Language:JavaScript 13.3%Language:C++ 0.2%