mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 22:56:11 +03:00
bfde9a1f6e
swc_bundler: - Handle export default-ed functions correctly.
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
import { SOURCE } from "../types/mod";
|
|
|
|
export const generateTVSource = (name: string): SOURCE => ({
|
|
name,
|
|
mediaType: "Television",
|
|
});
|