Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

antd-theme.d.ts 309B

1234567891011
  1. /*This file is created with the purpose of overwrite default antd theme*/
  2. import 'antd/es/theme/interface';
  3. declare module 'antd/es/theme/interface' {
  4. interface GlobalToken {
  5. colorPrimary2?: string;
  6. colorPrimary3?: string;
  7. colorSecondary?: string;
  8. // Add any other custom tokens here
  9. }
  10. }