rspack_binding_api 0.100.7

Rspack shared binding API
Documentation
use napi_derive::napi;
use rspack_core::cache::persistent::storage::StorageOptions;

#[derive(Debug, Default)]
#[napi(object)]
pub struct RawStorageOptions {
  #[napi(ts_type = r#""filesystem""#)]
  pub r#type: String,
  pub directory: String,
}

impl From<RawStorageOptions> for StorageOptions {
  fn from(value: RawStorageOptions) -> Self {
    match value.r#type.as_str() {
      "filesystem" => StorageOptions::FileSystem {
        directory: value.directory.into(),
      },
      s => panic!("unsupported storage type {s}"),
    }
  }
}