Files
DefinitelyTyped/detect-indent/detect-indent.d.ts
2014-04-01 00:36:13 +02:00

10 lines
353 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/borisyankov/DefinitelyTyped
declare module 'detect-indent' {
function DetectIndent (dir: string, alt?: string): string;
export = DetectIndent;
}