| 40 | export type MinifyMediaType = LiteralUnion<KnownMinifyMediaType | CommonMinifyMediaType, CustomMinifyMediaType>; |
| 41 | |
| 42 | export interface MinifyConfig { |
| 43 | cssPrecision?: number; |
| 44 | cssVersion?: number; |
| 45 | htmlKeepComments?: boolean; |
| 46 | htmlKeepConditionalComments?: boolean; |
| 47 | htmlKeepDefaultAttrvals?: boolean; |
| 48 | htmlKeepDocumentTags?: boolean; |
| 49 | htmlKeepEndTags?: boolean; |
| 50 | htmlKeepQuotes?: boolean; |
| 51 | htmlKeepSpecialComments?: boolean; |
| 52 | htmlKeepWhitespace?: boolean; |
| 53 | jsKeepVarNames?: boolean; |
| 54 | jsPrecision?: number; |
| 55 | jsVersion?: number; |
| 56 | jsonKeepNumbers?: boolean; |
| 57 | jsonPrecision?: number; |
| 58 | svgKeepComments?: boolean; |
| 59 | svgPrecision?: number; |
| 60 | xmlKeepWhitespace?: boolean; |
| 61 | } |
| 62 | |
| 63 | export interface MinifyOptions extends MinifyConfig { |
| 64 | data: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…