export interface VendorPrefixing { prefix: 'webkit' | 'moz' | 'ms' | 'o'; js: string; css: string; } /** * Add vendor prefixes to a string * * @param str - String to add vendor prefixes to * @return Array of the various vendor vendorPrefixed versions of the string */ export default function vendorPrefixed(str: string): VendorPrefixing[];