Page MenuHomeSealhub

image-formats.ts
No OneTemporary

image-formats.ts

import { NoActionSubject } from "../subject";
import App from "../../app/app";
import { ImageFormat } from "./image-format/image-format";
export default class ImageFormats extends NoActionSubject {
file_id: string;
constructor(app: App, file_id: string) {
super(app);
this.file_id = file_id;
}
getName() {
return "ImageFormats";
}
async getChildSubject(path_element: string) {
return new ImageFormat(this.app, this.file_id, path_element);
}
}

File Metadata

Mime Type
text/x-java
Expires
Tue, Jun 17, 03:29 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
665144
Default Alt Text
image-formats.ts (461 B)

Event Timeline