Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikyadav committed Jul 23, 2024
1 parent 2f5fa10 commit 4b62737
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/source/raster_array_tile_source.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import Texture from '../render/texture';
import RasterParticleStyleLayer from '../style/style_layer/raster_particle_style_layer';
import RasterStyleLayer from '../style/style_layer/raster_style_layer';
import { ResourceType } from '../util/ajax';
import { ErrorEvent, Evented } from '../util/evented';
import { extend } from '../util/util';
import {ResourceType} from '../util/ajax';
import {ErrorEvent, Evented} from '../util/evented';
import {extend} from '../util/util';
import RasterTileSource from './raster_tile_source';

// Import MRTData as a module with side effects to ensure
// it's registered as a serializable class on the main thread
import '../data/mrt_data';

import type { RasterArraySourceSpecification } from '../style-spec/types';
import type { Callback } from '../types/callback';
import type { Map } from '../ui/map';
import type {RasterArraySourceSpecification} from '../style-spec/types';
import type {Callback} from '../types/callback';
import type {Map} from '../ui/map';
import type Dispatcher from '../util/dispatcher';
import type RasterArrayTile from './raster_array_tile';
import type { TextureDescriptor } from './raster_array_tile';
import type { ISource, SourceRasterLayer } from './source';
import type {TextureDescriptor} from './raster_array_tile';
import type {ISource, SourceRasterLayer} from './source';
import type Tile from './tile';

/**
Expand Down

0 comments on commit 4b62737

Please sign in to comment.