@udus/notion-renderer
Version:

13 lines (12 loc) • 377 B
JavaScript
export const convertResponseToRollupPropertyItem = (property, client) => {
return {
...property,
};
};
export const convertListResponseToRollupPropertyItem = (list, client) => {
const rollupPropertyItemObject = {
...list.property_item,
};
return rollupPropertyItemObject;
};
export const isRollupTypeObject = (obj) => obj.type === "rollup";