UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

6 lines (5 loc) 171 B
import { ActionEvent } from "../awt/event/ActionEvent"; export interface Action { actionPerformed(event: ActionEvent): void; setEnabled(enabled: boolean): void; }