export function __TS__ObjectRest(
this: void,
target: Record,
usedProperties: Partial>
): Partial> {
const result: Partial> = {};
for (const property in target) {
if (!usedProperties[property]) {
result[property] = target[property];
}
}
return result;
}