Preview:```ts
const fields = {
[field0]: 1,
}
type Fields = typeof fields
// ^?
const fieldsLiteral = {
[field${0}]: 1,
}
type FieldsLiteral = typeof fieldsLiteral
// ^?
// Note the {[x: string]: number} type
const fieldsLiteralAsConst = {
[field${0} as const]: 1,
...```
You can choose specific lines to embed by selecting them before copying the link.