运维小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. export declare type Gradients = {
  2. [percent: string]: string;
  3. };
  4. export declare type FromTo = {
  5. from: string;
  6. to: string;
  7. };
  8. export declare type LinearGradient = {
  9. direction?: string;
  10. } & (Gradients | FromTo);
  11. export declare function getBackgroundColor(color: string | string[] | LinearGradient): string;