import { ThreadStore } from 'lib/ThreadStore'; import { Yalcs } from 'types/yalcs'; export function getThread({ thread_ts, key }: Yalcs.GetThreadOptions): Promise { return ThreadStore.read(thread_ts, key); }