Files
kiss-firefox/template/externs/webextension_polyfill/commands/Command.hx
2025-02-02 18:08:09 -06:00

22 lines
372 B
Haxe

package webextension_polyfill.commands;
typedef Command = {
/**
The name of the Extension Command
Optional.
**/
@:optional
var name : String;
/**
The Extension Command description
Optional.
**/
@:optional
var description : String;
/**
The shortcut active for this command, or blank if not active.
Optional.
**/
@:optional
var shortcut : String;
};