I have a set of symbol values in JavaScript that I want to convert to TypeScript.
// Defining object values in JavaScript
const size = {
Large: Symbol('large'),
Medium: Symbol('medium')
}
What is the most efficient method to convert these values to TypeScript?