title.d.cts 239 B

12345678
  1. /**
  2. * Sanitises title, removing any unwanted characters that might break XML.
  3. *
  4. * This is a very basic funciton, not full parser.
  5. */
  6. declare function sanitiseTitleAttribute(content: string): string;
  7. export { sanitiseTitleAttribute };