@flowscripter/pluggable-io-framework-api
    Preparing search index...

    Interface ItemProperties

    Properties of a file/folder item. size, lastModified, isFolder and contentType are well-known, framework-guaranteed fields every provider must populate. Anything provider-specific (etag, storage class, custom tags) goes in properties, validated against that provider's propertySchema.

    interface ItemProperties {
        contentType?: string;
        isFolder: boolean;
        lastModified: Date | undefined;
        properties: Readonly<Record<string, unknown>>;
        size: number | undefined;
    }
    Index
    contentType?: string
    isFolder: boolean
    lastModified: Date | undefined
    properties: Readonly<Record<string, unknown>>
    size: number | undefined