UNPKG

@udus/notion-renderer

Version:
13 lines (12 loc) 377 B
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";