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

ts4.3
ts4.4
Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
630
-50.63%
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

// Type definitions for leaflet-loading 0.1
// Project: https://github.com/ebrelsford/Leaflet.loading
// Definitions by: BePo <https://github.com/BePo65>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

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, 30 Aug 2023 19:34:54 GMT
  • Dependencies: @types/leaflet
  • Global values: none

Credits

These definitions were written by BePo.

FAQs

Package last updated on 30 Aug 2023

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