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