Skip to content

Commit

Permalink
Remove empty comment lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Nov 6, 2023
1 parent 331502d commit 9d85f05
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,31 +499,26 @@ export declare class FileTypeParser {
constructor(options?: {customDetectors?: Iterable<Detector>});

/**
*
* Works the same way as {@link fileTypeFromBuffer}, additionally taking into account custom detectors (if any were provided to the constructor).
*/
fromBuffer(buffer: Uint8Array | ArrayBuffer): Promise<FileTypeResult | undefined>;

/**
*
* Works the same way as {@link fileTypeFromStream}, additionally taking into account custom detectors (if any were provided to the constructor).
*/
fromStream(stream: ReadableStream): Promise<FileTypeResult | undefined>;

/**
*
* Works the same way as {@link fileTypeFromTokenizer}, additionally taking into account custom detectors (if any were provided to the constructor).
*/
fromTokenizer(tokenizer: ITokenizer): Promise<FileTypeResult | undefined>;

/**
*
* Works the same way as {@link fileTypeFromBlob}, additionally taking into account custom detectors (if any were provided to the constructor).
*/
fromBlob(blob: Blob): Promise<FileTypeResult | undefined>;

/**
*
* Works the same way as {@link fileTypeStream}, additionally taking into account custom detectors (if any were provided to the constructor).
*/
toDetectionStream(readableStream: ReadableStream, options?: StreamOptions): Promise<FileTypeResult | undefined>;
Expand Down

0 comments on commit 9d85f05

Please sign in to comment.