Skip to content

filterRemoteEntries

function filterRemoteEntries(entries: readonly RemoteEntry[], options?: {
filter?: RemoteBrowserFilter;
showHidden?: boolean;
}): RemoteEntry[];

Defined in: src/sync/createRemoteBrowser.ts:149

Filters entries using the optional predicate plus an optional hidden-file rule.

ParameterTypeDescription
entriesreadonly RemoteEntry[]Entries to filter.
options{ filter?: RemoteBrowserFilter; showHidden?: boolean; }Filtering controls.
options.filter?RemoteBrowserFilter-
options.showHidden?boolean-

RemoteEntry[]

Entries matching the supplied rules.