mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-04-18 18:50:16 -04:00
17 lines
251 B
TypeScript
17 lines
251 B
TypeScript
declare namespace SGA {
|
|
interface InitiativeDocument {
|
|
name: string;
|
|
thumbnail: {};
|
|
content: any[];
|
|
_id: string;
|
|
}
|
|
|
|
interface ArticleDocument {
|
|
title: string;
|
|
thumbnail: {};
|
|
content: any[];
|
|
publish_date: string;
|
|
_id: string;
|
|
}
|
|
}
|