Remove things from openspending

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-05-18 13:48:01 -03:00
parent fa05e374c9
commit 8a7be6e402
11 changed files with 329 additions and 140 deletions

View File

@@ -1,8 +1,11 @@
import { FiscalDataPackage, TabularDataResource } from "./datapackage.interface";
import {
FiscalDataPackage,
TabularDataResource,
} from './datapackage.interface';
export interface Project {
owner: { name: string; logo?: string }; // Info about the owner of the data repo
repo: { name: string; logo?: string }; // Info about the the data repo
owner: { name: string; logo?: string; title?: string }; // Info about the owner of the data repo
repo: { name: string; full_name: string }; // Info about the the data repo
files: TabularDataResource[];
name: string;
title?: string;
@@ -14,5 +17,5 @@ export interface Project {
end: string;
};
readme?: string;
datapackage: FiscalDataPackage
datapackage: FiscalDataPackage;
}