interface Visitor<T> {
    _: (name: string, value: any) => T;
    copied: (value: AutoTestCopiedSnapshotSource) => T;
    ran: (value: AutoTestRanSnapshotSource) => T;
}

Type Parameters

  • T

Properties

Properties

_: (name: string, value: any) => T
copied: (value: AutoTestCopiedSnapshotSource) => T
ran: (value: AutoTestRanSnapshotSource) => T