UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

17 lines (16 loc) 595 B
/** * returns true if the device is a touch device * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class IsTouchDeviceJsParamsConfig extends NodeParamsConfig { } export declare class IsTouchDeviceJsNode extends TypedJsNode<IsTouchDeviceJsParamsConfig> { paramsConfig: IsTouchDeviceJsParamsConfig; static type(): string; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; } export {};