Interface FormatValueOrArray<T>

represents signature of a function that formats either an atomic-value T, or an array thereof (T[]), to its/their string representation

interface FormatValueOrArray<T> {
    (value): string;
    (array): string[];
}

Type Parameters

  • T

Generated using TypeDoc