mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import { TempNode } from '../core/TempNode';
|
|
import { ResolutionNode } from './ResolutionNode';
|
|
|
|
export class ScreenUVNode extends TempNode {
|
|
|
|
constructor( resolution?: ResolutionNode );
|
|
|
|
resolution: ResolutionNode;
|
|
nodeType: string;
|
|
|
|
copy( source: ScreenUVNode ): this;
|
|
|
|
}
|