mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
support es6 module syntax import, detect-indent/detect-indent.d.ts
This commit is contained in:
parent
f6c8ca4719
commit
bfa5c7e93a
8
detect-indent/detect-indent.d.ts
vendored
8
detect-indent/detect-indent.d.ts
vendored
@ -4,6 +4,10 @@
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
declare module 'detect-indent' {
|
||||
function DetectIndent (dir: string, alt?: string): string;
|
||||
export = DetectIndent;
|
||||
interface DetectIndent {
|
||||
(dir: string, alt?: string): string;
|
||||
}
|
||||
var _: DetectIndent;
|
||||
export = _;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user