UNPKG

@voerkai18n/runtime

Version:
9 lines (7 loc) 263 B
import { IVoerkaI18nStorage } from "@/types"; export function isStorage(obj:any):obj is IVoerkaI18nStorage{ return obj && typeof obj.get === 'function' && typeof obj.set === 'function' && typeof obj.remove === 'function' }