interface StorageListOutput<Item> {
    excludedSubpaths?: string[];
    items: Item[];
}

Type Parameters

Properties

excludedSubpaths?: string[]

List of excluded subpaths when exclude is passed as part of the subpathStrategy of the input options.

items: Item[]

List of items returned by the list API.