mindee
Version:
Mindee Client Library for Node.js
22 lines (21 loc) • 392 B
TypeScript
import { StringDict } from "../common";
export declare class InferenceFile {
/**
* Name of the file.
*/
name: string;
/**
* Optional alias for the file.
*/
alias: string;
/**
* Page count.
*/
pageCount: number;
/**
* MIME type.
*/
mimeType: string;
constructor(serverResponse: StringDict);
toString(): string;
}