import type PortalCommonParams from "./PortalCommonParams.js"; export default interface UpdateDocumentResourcesParams extends PortalCommonParams { access?: "private" | "inherit"; archive?: boolean; file?: Blob; fileName?: string; text?: string; resourcesPrefix?: string; [key: string]: Blob | string | boolean | undefined; }