Open
Description
Bug Report
π Search Terms
Generic, 5.1.3
π Version & Regression Information
- This changed between versions 5.0.4 and 5.1.3
β― Playground Link
π» Code
type LexicalCommand<TPayload> = Record<string, never>;
type InsertTextPayload = Readonly<{ text: string }>;
function createCommand<T>(): LexicalCommand<T> {
return {};
}
const INSERT_TEXT_COMMAND: LexicalCommand<InsertTextPayload> =
createCommand();
π Actual behavior
The type of INSERT_TEXT_COMMAND
is LexicalCommand<TPayload>
in 5.1.3
(but LexicalCommand<InsertTextPayload>
in 5.0.4
).
π Expected behavior
The type of INSERT_TEXT_COMMAND
should be LexicalCommand<InsertTextPayload>
.