oxc/crates/oxc_isolated_declarations/tests/fixtures/readonly.ts

4 lines
171 B
TypeScript

export const EMPTY_OBJ: { readonly [key: string]: any } = __DEV__
? Object.freeze({})
: {}
export const EMPTY_ARR: readonly never[] = __DEV__ ? Object.freeze([]) : []