mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
/// <reference path="./findup-sync.d.ts" />
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
import findup = require('findup-sync');
|
|
|
|
var str: string;
|
|
|
|
str = findup('foo');
|
|
str = findup(['foo', 'bar']);
|
|
|
|
str = findup('foo', {
|
|
debug: true
|
|
});
|