chore: typos in suspense events (#2131)
Removes the mention of the recede event that has been replaced.
This commit is contained in:
@@ -49,6 +49,8 @@ expectError(<KeepAlive include={123} />)
|
||||
// Suspense
|
||||
expectType<JSX.Element>(<Suspense />)
|
||||
expectType<JSX.Element>(<Suspense key="1" />)
|
||||
expectType<JSX.Element>(<Suspense onResolve={() => {}} onFallback={() => {}} />)
|
||||
expectType<JSX.Element>(
|
||||
<Suspense onResolve={() => {}} onFallback={() => {}} onPending={() => {}} />
|
||||
)
|
||||
// @ts-expect-error
|
||||
expectError(<Suspense onResolve={123} />)
|
||||
|
||||
Reference in New Issue
Block a user