File size: 155 Bytes
bc20498 |
1 2 3 4 5 6 |
/**
* @param {Array<string>} [conditions]
* @returns {Set<string>}
*/
export function getConditionsSet(conditions?: string[] | undefined): Set<string>;
|
bc20498 |
1 2 3 4 5 6 |
/**
* @param {Array<string>} [conditions]
* @returns {Set<string>}
*/
export function getConditionsSet(conditions?: string[] | undefined): Set<string>;
|