- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
17 lines
428 B
TypeScript
17 lines
428 B
TypeScript
/// <reference types="node" />
|
|
/// <reference types="node" />
|
|
import { Readable } from 'stream';
|
|
import { GetUriProtocol } from './';
|
|
declare class DataReadable extends Readable {
|
|
hash?: string;
|
|
constructor(hash: string, buf: Buffer);
|
|
}
|
|
export interface DataOptions {
|
|
cache?: DataReadable;
|
|
}
|
|
/**
|
|
* Returns a Readable stream from a "data:" URI.
|
|
*/
|
|
export declare const data: GetUriProtocol<DataOptions>;
|
|
export {};
|