@openinc/parse-server-opendash
Version: 
Parse Server Cloud Code for open.INC Stack.
10 lines (9 loc) • 411 B
TypeScript
/**
 * Get all meta values and fields from a list of sources
 * @param sources the sources to get the meta values and fields from
 * @returns a Map<string, string[]> where the key is the meta field and the value is an array of meta values found for that key in all sources
 */
export declare function getSourceMetaMap(params: {
    user: Parse.User;
    sourceIds: string[];
}): Promise<Map<string, string[]>>;