Files
DefinitelyTyped/detect-indent/index.d.ts
2016-04-27 21:30:22 -07:00

12 lines
348 B
TypeScript

// Type definitions for detect-indent 0.1.3
// Project: https://github.com/sindresorhus/detect-indent
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface DetectIndent {
(dir: string, alt?: string): string;
}
declare var _: DetectIndent;
export = _;