UNPKG

ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

12 lines (11 loc) 381 B
/** * Scans a CSS or Sass file and locates all valid url function values as defined by the * syntax specification. * @param contents A string containing a CSS or Sass file to scan. * @returns An iterable that yields each CSS url function value found. */ export declare function findUrls(contents: string): Iterable<{ start: number; end: number; value: string; }>;