@awayjs/scene
Version:
AwayJS scene classes
20 lines • 618 B
TypeScript
import { EventBase } from '@awayjs/core';
/**
* A FocusEvent is dispatched when a entity is focused
*/
export declare class TextfieldEvent extends EventBase {
/**
* Defines the value of the type property of a focusIn3d event object.
*/
static CHANGED: string;
/**
* Create a new MouseEvent object.
* @param type The type of the MouseEvent.
*/
constructor(type: string);
/**
* Creates a copy of the MouseEvent object and sets the value of each property to match that of the original.
*/
clone(): TextfieldEvent;
}
//# sourceMappingURL=TextfieldEvent.d.ts.map