All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
// @flow
|
|
import type {StyleSpecification} from './types.js';
|
|
|
|
export default function emptyStyle(): StyleSpecification {
|
|
return {
|
|
version: 8,
|
|
layers: [],
|
|
sources: {}
|
|
};
|
|
}
|