|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
413 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | /// <reference types="node" />
|
|---|
| 2 | import { Readable } from 'stream';
|
|---|
| 3 | import AsyncReader from '../readers/async';
|
|---|
| 4 | import type Settings from '../settings';
|
|---|
| 5 | export default class StreamProvider {
|
|---|
| 6 | private readonly _root;
|
|---|
| 7 | private readonly _settings;
|
|---|
| 8 | protected readonly _reader: AsyncReader;
|
|---|
| 9 | protected readonly _stream: Readable;
|
|---|
| 10 | constructor(_root: string, _settings: Settings);
|
|---|
| 11 | read(): Readable;
|
|---|
| 12 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.