mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
4 lines
152 B
TypeScript
4 lines
152 B
TypeScript
export function renderStoryboard(src?: string | undefined): string {
|
|
return src ? `<track kind="metadata" label="thumbnails" src="${src}" />` : '';
|
|
}
|