fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
9 lines (8 loc) • 391 B
TypeScript
import STWSchematic from './STWSchematic';
import type { STWSchematicEvoType, STWSchematicMeleeSubType, STWSchematicRangedSubType } from '../../../resources/structs';
declare class STWWeaponSchematic extends STWSchematic {
type: 'ranged' | 'melee';
subType: STWSchematicRangedSubType | STWSchematicMeleeSubType;
evoType: STWSchematicEvoType;
}
export default STWWeaponSchematic;