kommunelogo/src/municipality-data-resources.ts
2017-07-12 23:57:13 +02:00

19 lines
323 B
TypeScript

export interface LinkResource {
name: string
url: string
}
export interface EnrichResource {
[key: number]: {
homepageUrl: string
resources: Array<LinkResource>
}
}
export const MunicipalityResources: EnrichResource = {
1622: {
homepageUrl: 'https://www.agdenes.kommune.no',
resources: []
}
}