mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
16 lines
308 B
TypeScript
16 lines
308 B
TypeScript
const F = {
|
|
string: `string`,
|
|
templateLiteral: `templateLiteral`,
|
|
number: 1.23,
|
|
bigint: -1_2_3n,
|
|
boolean: true,
|
|
null: null,
|
|
undefined: undefined,
|
|
function(a: string): void {},
|
|
arrow: (a: string): void => {},
|
|
object: {
|
|
a: `a`,
|
|
b: `b`
|
|
},
|
|
array: [`a`, , { b: `\n` }],
|
|
} as const
|