Convert logging infrastructure to TypeScript
This commit is contained in:
14
ts/firstline.d.ts
vendored
Normal file
14
ts/firstline.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
declare module 'firstline' {
|
||||
interface FirstLineOpts {
|
||||
encoding?: BufferEncoding;
|
||||
lineEnding?: '\n';
|
||||
}
|
||||
|
||||
export default function firstLine(
|
||||
filePath: string,
|
||||
opts?: FirstLineOpts
|
||||
): Promise<string>;
|
||||
}
|
Reference in New Issue
Block a user