mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
17 lines
199 B
TypeScript
17 lines
199 B
TypeScript
// #23734
|
|
type ObjType = {
|
|
foo: string
|
|
baz: string
|
|
quux: string
|
|
}
|
|
|
|
const obj: Readonly<ObjType> = {
|
|
foo: 'bar',
|
|
baz: 'qux',
|
|
quux: 'quuz',
|
|
}
|
|
|
|
const { foo, ...rest } = obj
|
|
|
|
delete rest.baz
|