We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance the underlying file, stream information.
Currently there is tokenizer.fileSize.
tokenizer.fileSize
Replace this with tokenizer.fileInfo of type IFileInfo where IFileInfo is:
tokenizer.fileInfo
IFileInfo
export interface IFileInfo { /** * File size in bytes */ size?: number; /** * MIME-type of file */ mimeType?: string; /** * File path */ path?: string; /** * File URL */ url?: string; }
The text was updated successfully, but these errors were encountered:
Part of v5.0.0
Sorry, something went wrong.
Borewit
No branches or pull requests
Enhance the underlying file, stream information.
Currently there is
tokenizer.fileSize
.Replace this with
tokenizer.fileInfo
of typeIFileInfo
whereIFileInfo
is:The text was updated successfully, but these errors were encountered: