import { IStory } from "~/models/stories";

export interface StoryFetchResult {
	stories: IStory[];
	total: number;
}