mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
22 lines
499 B
TypeScript
22 lines
499 B
TypeScript
// Type definitions for express-less
|
|
// Project: https://www.npmjs.com/package/express-less
|
|
// Definitions by: xyb <https://github.com/xieyubo>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
|
|
|
|
|
|
import express = require('express');
|
|
|
|
declare function less(root: string, options?: less.Options): express.RequestHandler;
|
|
|
|
declare namespace less {
|
|
export interface Options {
|
|
debug?: boolean;
|
|
compress?: boolean;
|
|
}
|
|
}
|
|
|
|
export = less;
|