UNPKG

@flashport/flashport

Version:

FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library

13 lines (12 loc) 374 B
import { AEvent } from "./AEvent"; export declare class TextEvent extends AEvent { static LINK: string; static TEXT_INPUT: string; private m_text; constructor(type: string, bubbles?: boolean, cancelable?: boolean, text?: string); get text(): string; set text(value: string); clone(): AEvent; toString(): string; private copyNativeData; }