UNPKG

@fnlb-project/fnbr

Version:

A library to interact with Epic Games' Fortnite HTTP and XMPP services

16 lines (15 loc) 578 B
import STWSchematic from './STWSchematic'; import type { STWSchematicTrapSubType } from '../../../resources/structs'; import type Client from '../../Client'; import type { STWProfileSchematicData } from '../../../resources/httpResponses'; declare class STWTrapSchematic extends STWSchematic { type: 'trap'; subType: STWSchematicTrapSubType; evoType: never; constructor(client: Client, id: string, data: STWProfileSchematicData & { type: 'trap'; subType: STWSchematicTrapSubType; evoType: never; }); } export default STWTrapSchematic;