import { Post } from './post.cls'; export interface DataService { addPost(post: Post): Promise; getPosts(): Promise; }