(url: string, importSource: string)
| 173 | } |
| 174 | |
| 175 | public static fromFileImport(url: string, importSource: string): CSSSource { |
| 176 | const file = CSSSource.resolveCSSPathFromURL(url, importSource); |
| 177 | |
| 178 | return new CSSSource(undefined, url, file, undefined); |
| 179 | } |
| 180 | |
| 181 | @profile |
| 182 | public static resolveCSSPathFromURL(url: string, importSource?: string): string { |
no test coverage detected