binary.ts

import File from "./file";

/**
 * A BinaryFile is a file that we can't read or write as a string (like an image).
 */
class BinaryFile extends File {
  // the binary contents of the file
  protected asBinary = null;
}

export default BinaryFile;
Revisions
DateHash
2024-04-13
2024-04-01
2024-03-31
2024-03-31
2024-03-31
Navigation
Previousindex.ts
Upclasses