(
packageName: string,
options: NativeAssetOptions = {},
)
| 263 | } |
| 264 | |
| 265 | export function nativeAssetCacheExists( |
| 266 | packageName: string, |
| 267 | options: NativeAssetOptions = {}, |
| 268 | ): boolean { |
| 269 | const root = getNativePackageRoot(packageName, options); |
| 270 | return root !== null && existsSync(root); |
| 271 | } |
| 272 | |
| 273 | export interface CleanupOptions { |
| 274 | readonly cacheBase: string; |
nothing calls this directly
no test coverage detected