mirror of
https://github.com/MrXujiang/h5-Dooring.git
synced 2025-12-15 04:12:49 +00:00
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
import { BasicTemplateItem } from './schema';
|
|
|
|
export type MediaTplKeyType = 'Video';
|
|
export type MediaTplType = Array<BasicTemplateItem<MediaTplKeyType>>;
|
|
|
|
const mediaTpl: MediaTplType = [
|
|
{
|
|
type: 'Video',
|
|
h: 107,
|
|
},
|
|
];
|
|
|
|
export default mediaTpl;
|