add missing externs to repo
This commit is contained in:
22
externs/webextension_polyfill/commands/Command.hx
Normal file
22
externs/webextension_polyfill/commands/Command.hx
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
};
|
Reference in New Issue
Block a user