@fnlb-project/fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
15 lines (14 loc) • 630 B
TypeScript
import STWWeaponSchematic from './STWWeaponSchematic';
import type { STWSchematicEvoType, STWSchematicMeleeSubType } from '../../../resources/structs';
import type { STWProfileSchematicData } from '../../../resources/httpResponses';
import type Client from '../../Client';
declare class STWMeleeWeaponSchematic extends STWWeaponSchematic {
type: 'melee';
subType: STWSchematicMeleeSubType;
constructor(client: Client, id: string, data: STWProfileSchematicData & {
type: 'melee';
subType: STWSchematicMeleeSubType;
evoType: STWSchematicEvoType;
});
}
export default STWMeleeWeaponSchematic;