Files
songs2vid/lib/entitlements.ts
Atakan Doğan Özban 6476bb42a4 Strip Songs2VID to a payment-free self-hosted OSS core.
Remove Stripe/billing/pricing/marketing, simplify schema and entitlements for unlimited self-host use, and keep auth, encode, and YouTube upload.
2026-08-03 06:52:00 +02:00

12 lines
387 B
TypeScript

import type { LayoutSettings } from "./layout";
import type { WatermarkSettings } from "./watermark";
export function assertCustomWatermarkAllowed(_settings: WatermarkSettings) {}
export function assertArtTrackLayoutAllowed(_settings: LayoutSettings) {}
export function assertPerItemImagesAllowed(
_sharedImagePath: string,
_itemImagePaths: Array<string | null | undefined>,
) {}