Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

💠 Converts Flow and TypeScript definitions to Reason interfaces

License

NotificationsYou must be signed in to change notification settings

rrdelaney/ReasonablyTyped

  $ npm install --global reasonably-typed

Converts TypeScript and Flow definitions to Reason interfaces
(Also maybe TypeScript definitions to Flow)


Take your Flow or TypeScript definition

// class.jsdeclaremodule'classes'{declaretypeState={id:number,storeName:string,}declareexportclassStore{constructor(initialState:State):Store;state:State;update(nextState:State):void;}}

Run retyped

$ retyped class.js

Get Reason

/* Module classes*/typestate= {. "id":float, "storeName":string };moduleStore= {typet= {. "state": (state), "update": [@bs.meth](state =>unit)};  [@bs.new] [@bs.module"classes"]externalmake:state =>t="Store";};

Docs

Examples

TypeScript

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

$ retyped my-definition.d.ts

Command-line Usage
Usage:  $ retyped ...filesExamples:  $ retyped file1.js file2.js file3.d.ts                                           [boolean]

Usage as a libraryReasonablyTyped also exports a library for use! See the example below:
// lib-usage.jsimport*asReasonablyTypedfrom'reasonably-typed'constlibSrc=fs.readFileSync('lib.js').toString()constbsInterface=ReasonablyTyped.compile(libSrc)

format (code: string) => string

Formats a block of code usingrefmt

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

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

Development

SeeDEVELOPING andCONTRIBUTING.

Status

CircleCI

About

💠 Converts Flow and TypeScript definitions to Reason interfaces

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors9


[8]ページ先頭

©2009-2025 Movatter.jp