/** * return whether the set contains the member. * true when set is identical to member. * This is useful when looking for member in a value that is an item or array of items * (common in JSON-LD) * @template T * @param {T | T[]} set * @param {T} member */ export function includes(set: T | T[], member: T): boolean; //# sourceMappingURL=includes.d.ts.map