mirror of
https://github.com/maputnik/editor.git
synced 2026-09-02 18:37:37 +00:00
3bf0e510e6
This completes the migration to typescript of all the non react components code. The only changes introduced besides types are the type checks using `"something" in object` which narrows down types in typescript.
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
const spec = {
|
|
maputnik: {
|
|
maptiler_access_token: {
|
|
label: "MapTiler Access Token",
|
|
doc: "Public access token for MapTiler Cloud."
|
|
},
|
|
thunderforest_access_token: {
|
|
label: "Thunderforest Access Token",
|
|
doc: "Public access token for Thunderforest services."
|
|
},
|
|
style_renderer: {
|
|
label: "Style Renderer",
|
|
doc: "Choose the default Maputnik renderer for this style.",
|
|
},
|
|
}
|
|
}
|
|
|
|
export default spec;
|