persona-community-5/.pnpm-store/v3/files/94/2343e16bba25231b527485c949161aff818a1fd0a8236acdb6a7b76cdba38bd767cba2a119fdc8d2ad482b7e4a98c41e68dd13e8e11d2d42d3911d57dbd31c
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

10 lines
385 B
Plaintext

import { Task } from '../managers/tasks';
import ReaderSync from '../readers/sync';
import { Entry, EntryItem, ReaderOptions } from '../types';
import Provider from './provider';
export default class ProviderSync extends Provider<EntryItem[]> {
protected _reader: ReaderSync;
read(task: Task): EntryItem[];
api(root: string, task: Task, options: ReaderOptions): Entry[];
}