10 lines
No EOL
246 B
TypeScript
10 lines
No EOL
246 B
TypeScript
import { Environment } from "../constants/Environment";
|
|
import { ButtonEvent } from "../type/buttonEvent";
|
|
|
|
interface ButtonEventItem {
|
|
ButtonId: string,
|
|
Event: ButtonEvent,
|
|
Environment: Environment,
|
|
}
|
|
|
|
export default ButtonEventItem; |