mirror of
https://github.com/xfarrow/blink
synced 2025-06-27 09:03:02 +02:00
Change endpoint from persons to people
This commit is contained in:
14
backend/apis/nodejs/node_modules/tildify/index.d.ts
generated
vendored
Normal file
14
backend/apis/nodejs/node_modules/tildify/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`.
|
||||
|
||||
@example
|
||||
```
|
||||
import tildify = require('tildify');
|
||||
|
||||
tildify('/Users/sindresorhus/dev');
|
||||
//=> '~/dev'
|
||||
```
|
||||
*/
|
||||
declare function tildify(absolutePath: string): string;
|
||||
|
||||
export = tildify;
|
Reference in New Issue
Block a user