bungie-net-core
Version:
An easy way to interact with the Bungie.net API
12 lines (11 loc) • 412 B
TypeScript
/**
* A plug can optionally have a "Breaker Type": a special ability that can affect
* units in unique ways. Activating this plug can grant one of these types.
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.DestinyBreakerType}
*/
export declare const DestinyBreakerType: {
readonly None: 0;
readonly ShieldPiercing: 1;
readonly Disruption: 2;
readonly Stagger: 3;
};