mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
221 B
TypeScript
15 lines
221 B
TypeScript
import commondir = require('commondir');
|
|
|
|
// $ExpectType string
|
|
commondir('wwwroot', [
|
|
'static_files/png/',
|
|
'../gif/image.gif',
|
|
]);
|
|
|
|
// $ExpectType string
|
|
commondir([
|
|
'/x/y/z',
|
|
'/x/y',
|
|
'/x/y/w/q',
|
|
]);
|