Last change
on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
385 bytes
|
Line | |
---|
1 | import { Task } from '../managers/tasks';
|
---|
2 | import ReaderSync from '../readers/sync';
|
---|
3 | import { Entry, EntryItem, ReaderOptions } from '../types';
|
---|
4 | import Provider from './provider';
|
---|
5 | export default class ProviderSync extends Provider<EntryItem[]> {
|
---|
6 | protected _reader: ReaderSync;
|
---|
7 | read(task: Task): EntryItem[];
|
---|
8 | api(root: string, task: Task, options: ReaderOptions): Entry[];
|
---|
9 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.