diff --git a/packages/config/src/config/vector.style.ts b/packages/config/src/config/vector.style.ts index 4967a430b..96f8784d5 100644 --- a/packages/config/src/config/vector.style.ts +++ b/packages/config/src/config/vector.style.ts @@ -3,6 +3,7 @@ import { BaseConfig } from './base.js'; interface SourceVector { type: 'vector'; url: string; + attribution?: string; } interface SourceRaster { @@ -11,6 +12,7 @@ interface SourceRaster { tileSize?: number; minzoom?: number; maxzoom?: number; + attribution?: string; } type Source = SourceVector | SourceRaster;