This repository was archived by the owner on May 12, 2025. It is now read-only.

Description
Add LST elements to support the following imports:
@Test
void importObjectLiteral() {
rewriteRun(
javaScript(
"""
import { First , Second , Third } from 'target';
"""
)
);
}
@Test
void mixedTypes() {
rewriteRun(
javaScript(
"""
import nameA , { First , Second } from 'targetA';
"""
)
);
}
@Test
void multiAlias() {
rewriteRun(
javaScript(
"""
import { FormData as FormDataPolyfill , Blob as BlobPolyfill , File as FilePolyfill } from 'formdata-node'
"""
)
);
}