File size: 265 Bytes
f24ad59
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { decode } from "js-base64"

import { BasicSearchResult } from "../v1/search/types"

export function parseBasicSearchResult(input?: any): BasicSearchResult {
  let basicResult = JSON.parse(decode(`${input || ""}`)) as BasicSearchResult
  return basicResult
}