From 92a90ee7b548513b83597312450edb047740fc49 Mon Sep 17 00:00:00 2001 From: "ajeffrey@roblox.com" Date: Thu, 6 Jan 2022 16:55:08 -0600 Subject: [PATCH] Added an example from ReduxJS --- rfcs/recursive-type-unrestriction.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rfcs/recursive-type-unrestriction.md b/rfcs/recursive-type-unrestriction.md index 145ebef8..05dab4aa 100644 --- a/rfcs/recursive-type-unrestriction.md +++ b/rfcs/recursive-type-unrestriction.md @@ -41,6 +41,8 @@ export type PromiseFor = { ``` as discussed at the [Roblox DevForum](https://devforum.roblox.com/t/regression-with-genericrecursively-defined-types/1616647). +Examples like this are quite common in TypeScript code, for example in [ReduxJS](https://github.com/reduxjs/redux-thunk/blob/master/src/types.ts). + ## Design *This section to be filled in once we decide which alternative to use*