fork-openpgpjs/src/packet/index.js
2018-03-13 00:13:04 -07:00

23 lines
371 B
JavaScript

/**
* @fileoverview OpenPGP packet types
* @see module:packet/all_packets
* @see module:packet/clone
* @see module:packet.List
* @module packet
*/
import * as packets from './all_packets';
import * as clone from './clone';
import List from './packetlist';
const mod = {
List,
clone
};
for (const i in packets) {
mod[i] = packets[i];
}
export default mod;