microsoft / microsoft/TypeScript
Allow returning types from functions
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.4k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
Search Terms
Not easily googleable because all the words are the same for extracting the function's return type.
export type from function, return type from function
Suggestion
Make it possible to return a type from a function.
The type doesn't need to depend on the runtime values passed to the function, only on their types. This feature is just syntactic sugar.
Desired:
const {decorated_fn, DecoratedFnParams} = decorate(fn);
declare const decorated_fn_params: DecoratedFnParams;
decorated_fn(decorated_fn_params);
Workaround:
const decorated_fn = decorate(fn);
type DecoratedFnParams = DecoratedParams<typeof fn>;
declare const decorated_fn_params: DecoratedFnParams;
decorated_fn(decorated_fn_params);
Alternative syntax, since this only seems useful for functions that run once:
import {decorated_fn, DecoratedFnParams} = decorate(fn);
(Shouldn't be a compatibility breaking change for the same reasons import ... = require() isn't).
Use Cases
My case is decorating a class with multiple generic parameters. Currently I have to do this:
interface Bar extends BaseBar {}
interface Baz extends BaseBaz {}
class Foo<Bar, Baz> extends BaseFoo {}
const DecoratedFoo = decorator(Foo);
type DecoratedFooBar = ExtractBar<DecoratedFoo>;
type DecoratedFooBaz = ExtractBaz<DecoratedFoo>;
But it could be just const {DecoratedFoo, DecoratedFooBar, DecoratedFooBaz} = decorator(Foo);
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
ソースファイル、テスト、エントリポイントのいずれも指定されていません。まず、要求されている分割代入構文、回避策、および issue にリンクされている TypeScript Design Goals を確認してください。完了には、合意された型システムの設計と、例に対応する動作が必要です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100