Tons of Solutions Engineering work done today for the rest of the CS team! Headway, Howard Hanna, Engels, Brighton, etc. Also completed Datasnippers auth flow and worked on Anthology's script. Cloned Anthology's courses (900..) and will clone Full Story on Monday.
This commit is contained in:
17
Scripts/node_modules/get-uri/dist/file.d.ts
generated
vendored
Normal file
17
Scripts/node_modules/get-uri/dist/file.d.ts
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
/// <reference types="node" />
|
||||
/// <reference types="node" />
|
||||
import { Readable } from 'stream';
|
||||
import { Stats, createReadStream } from 'fs';
|
||||
import { GetUriProtocol } from './';
|
||||
type ReadStreamOptions = NonNullable<Exclude<Parameters<typeof createReadStream>[1], string>>;
|
||||
interface FileReadable extends Readable {
|
||||
stat?: Stats;
|
||||
}
|
||||
export interface FileOptions extends ReadStreamOptions {
|
||||
cache?: FileReadable;
|
||||
}
|
||||
/**
|
||||
* Returns a `fs.ReadStream` instance from a "file:" URI.
|
||||
*/
|
||||
export declare const file: GetUriProtocol<FileOptions>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user