vendor.d.ts 364 B

1234567891011121314
  1. /**
  2. * Contains helpers for working with vendor prefixes.
  3. */
  4. declare module Vendor {
  5. /**
  6. * @returns The vendor prefix extracted from the input string.
  7. */
  8. function prefix(prop: string): string;
  9. /**
  10. * @returns The input string stripped of its vendor prefix.
  11. */
  12. function unprefixed(prop: string): string;
  13. }
  14. export default Vendor;