mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
11 lines
195 B
TypeScript
11 lines
195 B
TypeScript
import { IStory } from 'operations/chatOperations';
|
|
|
|
function mergeImages(story: IStory, titleImage: string): IStory {
|
|
return {
|
|
...story,
|
|
titleImage
|
|
};
|
|
}
|
|
|
|
export default mergeImages;
|