mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
12 lines
348 B
TypeScript
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 = _;
|