0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Rails】シリアライザーに対応するTypeScriptの型を生成する方法

Posted at

Typelizerを使用するとシリアライザーに対応するTypeScriptの型を生成できます。

インストール

Gemfileに以下を追記します。

Gemfile
gem "typelizer"

bundle installを実行します。

bundle install

使い方

Albaを使用している場合にはapplication_resource.rbinclude Typelizer::DSLを追記します。

app/resources/application_resource.rb
class ApplicationResource
  include Alba::Resource
  include Typelizer::DSL
end

ターミナルで以下のコマンドを実行すると型定義ファイルが生成されます。
デフォルトではapp/javascript/types/serializersに生成されます。

rails typelizer:generate
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?