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
Sat, Oct 11, 09:29 (8 h, 30 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
984122
Default Alt Text
image-formats.ts (461 B)

Event Timeline