UNPKG

@iotize/tap-scripts

Version:

IoTize Tap scripts

11 lines (10 loc) 518 B
import '@iotize/tap/auth'; import { ParserRuleContext } from 'antlr4ts/ParserRuleContext'; import { TestRunnerContextInterface } from '../test-runner-context-interface'; import { AbstractInstruction } from './abstract-instruction'; export declare class LogoutInstruction extends AbstractInstruction<any> { parserContext?: ParserRuleContext | undefined; constructor(parserContext?: ParserRuleContext | undefined); run(context: TestRunnerContextInterface): Promise<void>; describe(): string; }