Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
410 B
Text
14 lines
410 B
Text
/// <reference types="node" />
|
|
import { AccessOptions } from 'basic-ftp';
|
|
import { Readable } from 'stream';
|
|
import { GetUriProtocol } from '.';
|
|
export interface FTPReadable extends Readable {
|
|
lastModified?: Date;
|
|
}
|
|
export interface FTPOptions extends AccessOptions {
|
|
cache?: FTPReadable;
|
|
}
|
|
/**
|
|
* Returns a Readable stream from an "ftp:" URI.
|
|
*/
|
|
export declare const ftp: GetUriProtocol<FTPOptions>;
|