Type alias StringMap<T>

StringMap<T>: {
    [K in keyof T]: `${T[K]}`
}

Type Parameters

  • T extends Record<string, any>