mirror of
https://github.com/swc-project/swc.git
synced 2024-12-27 23:56:32 +03:00
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
|
import { SOURCE } from "../types/mod";
|
||
|
|
||
|
export const generateTVSource = (name: string): SOURCE => ({
|
||
|
name,
|
||
|
mediaType: "Television",
|
||
|
});
|