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