mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
21 lines
455 B
TypeScript
21 lines
455 B
TypeScript
import { NodeFrame } from '../core/NodeFrame';
|
|
import { FloatNode } from '../inputs/FloatNode';
|
|
|
|
export class TimerNode extends FloatNode {
|
|
|
|
constructor( scale?: number, scope?: string, timeScale?: boolean );
|
|
|
|
scale: number;
|
|
scope: string;
|
|
timeScale: boolean;
|
|
nodeType: string;
|
|
|
|
getUnique(): boolean;
|
|
updateFrame( frame: NodeFrame ): void;
|
|
copy( source: TimerNode ): this;
|
|
|
|
static GLOBAL: string;
|
|
static LOCAL: string;
|
|
static DELTA: string;
|
|
|
|
}
|