article.ts 345 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 namespace noosfero { export interface Article extends RestModel { path: string; profile: Profile; type: string; parent: Article; body: string; title: string; name: string; published: boolean; setting: any; start_date: string; end_date: string; } }