| 1 | export interface Environment { |
| 2 | /** |
| 3 | * Converts a string to a base 64 string |
| 4 | */ |
| 5 | encodeBase64(str: string): string |
| 6 | /** |
| 7 | * Lookup the mime-type of a filename |
| 8 | */ |
| 9 | mimeLookup(filename: string): string |
| 10 | /** |
| 11 | * Look up the charset of a mime type |
| 12 | * @param mime |
| 13 | */ |
| 14 | charsetLookup(mime: string): string |
| 15 | /** |
| 16 | * Gets a source map generator |
| 17 | * |
| 18 | * @todo - Figure out precise type |
| 19 | */ |
| 20 | getSourceMapGenerator(): any |
| 21 | } |
no outgoing calls
no test coverage detected