Preview:ts /**Stores the JS type used for each pseudocode variable type */ export type VariableTypeMapping<T> = T extends PrimitiveVariableType<infer U> ? ( //! deleting <infer U> fixes the error T["name"] extends "INTEGER" ? number : T["name"] extends "DATE" ? Date : ...
You can choose specific lines to embed by selecting them before copying the link.