use crate::LockfileDependency;
use crate::yarn::{YarnLock, YarnLockError};
pub type BunLockbError = YarnLockError;
pub struct BunLockb;
impl BunLockb {
pub fn parse<T: AsRef<str>>(content: T) -> Result<Vec<LockfileDependency>, BunLockbError> {
YarnLock::parse(content)
}
}