11 lines
206 B
Haxe
11 lines
206 B
Haxe
package node.crypto;
|
|
|
|
typedef PublicKeyInput = {
|
|
var key : ts.AnyOf2<String, node.buffer.Buffer>;
|
|
@:optional
|
|
var format : KeyFormat;
|
|
@:optional
|
|
var type : String;
|
|
@:optional
|
|
var encoding : String;
|
|
}; |