interface Visitor<T> {
    _: (name: string, value: any) => T;
    autoInstallCodeStructureTest: (
        value: AutoInstallCodeStructureTestStepOutput,
    ) => T;
    autoInstallFlake8: (value: AutoInstallFlake8StepOutput) => T;
    autoInstallJupyterNotebook: (
        value: AutoInstallJupyterNotebookStepOutput,
    ) => T;
    autoInstallPytest: (value: AutoInstallPytestStepOutput) => T;
    autoInstallSimplePythonTest: (
        value: AutoInstallSimplePythonTestStepOutput,
    ) => T;
}

Type Parameters

  • T

Properties

_: (name: string, value: any) => T
autoInstallCodeStructureTest: (
    value: AutoInstallCodeStructureTestStepOutput,
) => T
autoInstallFlake8: (value: AutoInstallFlake8StepOutput) => T
autoInstallJupyterNotebook: (value: AutoInstallJupyterNotebookStepOutput) => T
autoInstallPytest: (value: AutoInstallPytestStepOutput) => T
autoInstallSimplePythonTest: (value: AutoInstallSimplePythonTestStepOutput) => T