// this funtion is used for setStorage and key and value both type a string
export function setStorage(key: string, value: string) {
  return;
}
// this funtion is used for deleteStorage with the help of key
export function deleteStorage(key: string) {
  return;
}
/**
 * this funtion is used for getStorage with the help of key as string
 */
export function getValueFromStorage(key: string) {
  return;
}
