Merge pull request #11991 from simonseyock/wkt-format-types

Fix some typings in format and format/WKT
This commit is contained in:
Tim Schaub
2021-02-09 07:59:47 -07:00
committed by GitHub
4 changed files with 71 additions and 85 deletions

View File

@@ -9,7 +9,7 @@ describe('ol.format.WKT', function () {
describe('#readProjectionFromText', function () {
it('returns the default projection', function () {
const projection = format.readProjectionFromText('POINT(1 2)');
expect(projection).to.be(null);
expect(projection).to.be(undefined);
});
});