1.1.5 • Published 6 months ago

@types/rollup-plugin-less v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/rollup-plugin-less

Summary

This package contains type definitions for rollup-plugin-less (https://github.com/xiaofuzi/rollup-plugin-less##readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-less.

index.d.ts

// Type definitions for rollup-plugin-less 1.1
// Project: https://github.com/xiaofuzi/rollup-plugin-less##readme
// Definitions by: Tristan <https://github.com/LeoDog896>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />
/// <reference types="jsdom" />
/// <reference types="less" />
import { Plugin } from 'rollup';

declare namespace less {
    interface Options {
        insert?: boolean;
        watch?: boolean;
        option?: Less.Options;
        plugins?: Less.Plugin[];
        output?: string | boolean | (() => string);
        include?: string | string[];
        exclude?: string | string[];
    }
}
declare function less(options?: less.Options): Plugin;
export = less;

Additional Details

Credits

These definitions were written by Tristan.

1.1.5

6 months ago

1.1.4

7 months ago

1.1.3

8 months ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago