portfolio.web/src/app/blog/blog.model.ts

6 lines
113 B
TypeScript

import { IPost } from "../models/post.model";
export interface IBlog{
blogUrl: string;
posts: IPost[];
}