mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
96 lines
2.2 KiB
TypeScript
96 lines
2.2 KiB
TypeScript
// Type definitions for LESS
|
|
// Project: http://lesscss.org/
|
|
// Definitions by: Tom Hasner <https://github.com/thasner>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace Less {
|
|
interface RootFileInfo {
|
|
filename: string;
|
|
relativeUrls: boolean;
|
|
rootpath: string;
|
|
currentDirectory: string;
|
|
entryPath: string;
|
|
rootFilename: string;
|
|
}
|
|
|
|
class PluginManager {
|
|
constructor(less: LessStatic);
|
|
|
|
addPreProcessor(preProcessor: PreProcessor, priority?: number): void;
|
|
}
|
|
|
|
interface Plugin {
|
|
install: (less: LessStatic, pluginManager: PluginManager) => void;
|
|
}
|
|
|
|
interface PreProcessor {
|
|
process: (src: string, extra: PreProcessorExtraInfo) => string;
|
|
}
|
|
|
|
interface PreProcessorExtraInfo {
|
|
context: {
|
|
pluginManager: PluginManager;
|
|
};
|
|
|
|
fileInfo: RootFileInfo;
|
|
|
|
imports: {
|
|
[key: string]: any;
|
|
};
|
|
}
|
|
|
|
interface SourceMapOption {
|
|
sourceMapURL: string;
|
|
sourceMapBasepath: string;
|
|
sourceMapRootpath: string;
|
|
outputSourceFiles: boolean;
|
|
sourceMapFileInline: boolean;
|
|
}
|
|
|
|
interface StaticOptions {
|
|
async: boolean;
|
|
fileAsync: boolean;
|
|
}
|
|
|
|
interface Options {
|
|
sourceMap?: SourceMapOption;
|
|
filename?: string;
|
|
plugins: Plugin[];
|
|
rootFileInfo?: RootFileInfo;
|
|
}
|
|
|
|
interface RenderError {
|
|
column: number;
|
|
extract: string[];
|
|
filename: string;
|
|
index: number;
|
|
line: number;
|
|
message: string;
|
|
type: string;
|
|
}
|
|
|
|
interface RenderOutput {
|
|
css: string;
|
|
map: string;
|
|
imports: string[];
|
|
}
|
|
}
|
|
|
|
interface LessStatic {
|
|
options: Less.StaticOptions;
|
|
|
|
render(input: string, callback: (error: Less.RenderError, output: Less.RenderOutput) => void): void;
|
|
render(input: string, options: Less.Options, callback: (error: Less.RenderError, output: Less.RenderOutput) => void): void;
|
|
|
|
render(input: string): Promise<Less.RenderOutput>;
|
|
render(input: string, options: Less.Options): Promise<Less.RenderOutput>;
|
|
|
|
version: number[];
|
|
}
|
|
|
|
declare module "less" {
|
|
export = less;
|
|
}
|
|
|
|
declare var less: LessStatic;
|