@mapcreator/sdk 0.0.0-fonts.2 → 0.0.0-fonts.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { AdornmentPosition, PositionOffsets } from '../types/jobObject';
2
- import { SkySpecification } from '@mapcreator/maplibre-gl';
2
+ import { SkySpecification, StyleLayer } from '@mapcreator/maplibre-gl';
3
3
  export declare const defaultSky: SkySpecification;
4
4
  type PositionConfig = {
5
5
  x: 'left' | 'right' | 'center';
@@ -10,4 +10,9 @@ export declare const positionConfig: {
10
10
  [position in AdornmentPosition]: PositionConfig;
11
11
  };
12
12
  export declare const defaultFov = 36.87;
13
+ type OpacityConfig = {
14
+ props: string[];
15
+ defaultValue: number;
16
+ };
17
+ export declare const opacityConfigByType: Partial<Record<StyleLayer['type'], OpacityConfig>>;
13
18
  export {};