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>
30 lines
No EOL
751 B
Text
30 lines
No EOL
751 B
Text
/**
|
|
* @license
|
|
* Copyright 2024 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/**
|
|
* @public
|
|
*/
|
|
export type DownloadPolicy = 'deny' | 'allow' | 'allowAndName' | 'default';
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface DownloadBehavior {
|
|
/**
|
|
* Whether to allow all or deny all download requests, or use default behavior if
|
|
* available.
|
|
*
|
|
* @remarks
|
|
* Setting this to `allowAndName` will name all files according to their download guids.
|
|
*/
|
|
policy: DownloadPolicy;
|
|
/**
|
|
* The default path to save downloaded files to.
|
|
*
|
|
* @remarks
|
|
* Setting this is required if behavior is set to `allow` or `allowAndName`.
|
|
*/
|
|
downloadPath?: string;
|
|
}
|
|
//# sourceMappingURL=DownloadBehavior.d.ts.map |