UNPKG

413 BTypeScriptView Raw
1import { CsxBackgroundOptions } from './types';
2/**
3 * Creates a `background` shorthand value. You can supply multiple backgrounds, but the `background-color` can only be defined on the last background, as there is only one background color for an element.
4 * @see https://developer.mozilla.org/en-US/docs/Web/CSS/background
5 */
6export declare function background(...backgrounds: CsxBackgroundOptions[]): string;