@versatiles/style 4.2.3 → 4.2.4
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.
- package/dist/styles/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/styles/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type StyleBuilder from '../style_builder/style_builder.js';
|
|
2
2
|
import type { StyleBuilderOptions } from '../style_builder/types.js';
|
|
3
3
|
import type { MaplibreStyle } from '../types/maplibre.js';
|
|
4
|
-
export type { StyleBuilderOptions, MaplibreStyle
|
|
4
|
+
export type { StyleBuilderOptions, MaplibreStyle };
|
|
5
5
|
import Colorful from './colorful.js';
|
|
6
6
|
import Graybeard from './graybeard.js';
|
|
7
7
|
import Neutrino from './neutrino.js';
|
|
@@ -11,3 +11,4 @@ type MakeStyle<T extends StyleBuilder<T>> = ((options?: StyleBuilderOptions<T>)
|
|
|
11
11
|
export declare const colorful: MakeStyle<Colorful>;
|
|
12
12
|
export declare const graybeard: MakeStyle<Graybeard>;
|
|
13
13
|
export declare const neutrino: MakeStyle<Neutrino>;
|
|
14
|
+
export type Style = MakeStyle<Colorful> | MakeStyle<Graybeard> | MakeStyle<Neutrino>;
|