interface Visitor<T> {
    _: (name: string, value: any) => T;
    directory: (value: OutputEditorDirectoryType) => T;
    regular: (value: OuptutRegularFileType) => T;
}

Type Parameters

  • T

Properties

Properties

_: (name: string, value: any) => T
directory: (value: OutputEditorDirectoryType) => T
regular: (value: OuptutRegularFileType) => T