/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * Returns the difference between two sets. That is, it returns a Set containing the items in Set A that are not in Set * B. * * @param setA - A set. * @param setB - A set. * @returns A new set containing the difference of Set A and Set B. * * @remarks * * Implementation from {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set}. * * @internal */ export declare function difference(setA: Set, setB: Set): Set; //# sourceMappingURL=sets.d.ts.map