版博士V2.0程序
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.
 
 
 
 

19 rader
560 B

  1. import { IconifyJSON } from '@iconify/types';
  2. import { IconCSSIconSetOptions, CSSUnformattedItem } from './types.js';
  3. interface CSSData {
  4. common?: CSSUnformattedItem;
  5. css: CSSUnformattedItem[];
  6. errors: string[];
  7. }
  8. /**
  9. * Get data for getIconsCSS()
  10. */
  11. declare function getIconsCSSData(iconSet: IconifyJSON, names: string[], options?: IconCSSIconSetOptions): CSSData;
  12. /**
  13. * Get CSS for icon
  14. */
  15. declare function getIconsCSS(iconSet: IconifyJSON, names: string[], options?: IconCSSIconSetOptions): string;
  16. export { getIconsCSS, getIconsCSSData };