Type alias StringMap<T>

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

Type Parameters