(path: string)
| 103 | } |
| 104 | |
| 105 | export function buildJSItem(path: string): JSScriptItem { |
| 106 | return { |
| 107 | type: 'script', |
| 108 | data: { |
| 109 | src: path, |
| 110 | }, |
| 111 | }; |
| 112 | } |
| 113 | |
| 114 | export function buildCSSItem(path: string): CSSStylesheetItem { |
| 115 | return { |
no outgoing calls
no test coverage detected