5 lines
106 B
TypeScript
5 lines
106 B
TypeScript
export interface CacheNode {
|
|
player: any; // 播放器控制对象
|
|
data: any; // 播放节点参数
|
|
}
|