normalize.d.ts 349 B

1234567891011
  1. /**
  2. * Get the cleaned case insensitive form of an attribute or property.
  3. *
  4. * @param {string} value
  5. * An attribute-like or property-like name.
  6. * @returns {string}
  7. * Value that can be used to look up the properly cased property on a
  8. * `Schema`.
  9. */
  10. export function normalize(value: string): string;
  11. //# sourceMappingURL=normalize.d.ts.map