@cobuildlab/8base-utils
Version:
This is package to deal with common scenarios working with 8base platform
10 lines (9 loc) • 390 B
TypeScript
/**
* Helper to change non null keys to 8base 'connect' reference.
* WARNING: This function mutates the data.
* WARNING: This functions assumes that all 8base keys are strings.
*
* @param {object} data - The Object to be Mutated.
* @param {string} key - The key in the Object.
*/
export declare const normalize8baseReferenceConnect: (data: Record<string, any>, key: string) => void;