7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
/**
|
|
* @param {Record<string, string>} attributes
|
|
* @param {string} property
|
|
* @returns {string}
|
|
*/
|
|
export function caseInsensitiveTransform(attributes: Record<string, string>, property: string): string;
|