New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@types/leaflet-loading

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/leaflet-loading

TypeScript definitions for leaflet-loading

ts5.2
ts5.3
ts5.4
ts5.5
ts5.6
ts5.7
ts5.8
ts5.9
ts6.0
latest
Source
npmnpm
Version
0.1.5
Version published
Weekly downloads
1.5K
-3.85%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/leaflet-loading

Summary

This package contains type definitions for leaflet-loading (https://github.com/ebrelsford/Leaflet.loading).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/leaflet-loading.

index.d.ts

import * as L from "leaflet";

declare module "leaflet" {
    interface MapOptions {
        loadingControl?: boolean | undefined;
    }

    interface LoadingOptions extends ControlOptions {
        delayIndicator?: number | undefined;
        separate?: boolean | undefined;
        zoomControl?: Control.Zoom | undefined;
        spinjs?: boolean | undefined;
        spin?: {
            lines?: number | undefined;
            length?: number | undefined;
            width?: number | undefined;
            radius?: number | undefined;
            rotate?: number | undefined;
            top?: string | undefined;
        } | undefined;
    }

    namespace Control {
        class Loading extends Control {
            constructor(options?: LoadingOptions);
            options: LoadingOptions;
        }

        function loading(options?: LoadingOptions): Loading;
    }
}

Additional Details

  • Last updated: Wed, 03 Sep 2025 08:02:48 GMT
  • Dependencies: @types/leaflet

Credits

These definitions were written by BePo.

FAQs

Package last updated on 03 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts