/** * This package contains commonly-used data types in the Dark Forest webclient, * also accessible in node.js server environments. * * ## Installation * * You can install this package using [`npm`](https://www.npmjs.com) or * [`yarn`](https://classic.yarnpkg.com/lang/en/) by running: * * ```bash * npm install --save @dfares/types * ``` * ```bash * yarn add @dfares/types * ``` * * When using this in a plugin, you might want to load it with [skypack](https://www.skypack.dev) * * ```js * import * as types from 'http://cdn.skypack.dev/@dfares/types' * ``` * * @packageDocumentation */ export * from './arrival'; export * from './artifact'; export * from './avatar'; export * from './blue_zones'; export * from './burn'; export * from './capture_zones'; export * from './claim'; export * from './database_types'; export * from './diagnostics'; export * from './event'; export * from './game_types'; export * from './gas_prices'; export * from './hat'; export * from './identifier'; export * from './kardashev'; export * from './logo'; export * from './meme'; export * from './modal'; export * from './pink_zones'; export * from './planet'; export * from './planetmessage'; export * from './player'; export * from './plugin'; export * from './renderer'; export * from './reveal'; export * from './setting'; export * from './transaction'; export * from './transactions'; export * from './union'; export * from './upgrade'; export * from './utility'; export * from './webserver'; export * from './world';