interface Visitor<T> {
    _: (name: string, value: any) => T;
    published: (value: string) => T;
    unpublished: (value: Unit) => T;
}

Type Parameters

  • T

Properties

_: (name: string, value: any) => T
published: (value: string) => T
unpublished: (value: Unit) => T