Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. export type ArticleList = ArticleListItem[];
  2.  
  3. export class ArticleListItem {
  4. title!: string;
  5. date?: string;
  6. key_type!: KeyTypes;
  7. path!: string;
  8. query: string = '';
  9.  
  10. constructor( item: ArticleListItem ) {
  11. Object.assign( this, item );
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement