Rocky_Mountain_Vending/.pnpm-store/v10/files/26/b631f3fccbdb0f08ee6de2bf3e83c3f1fd05f791f76107a2f63cbe5ff5ec1c0066ea10886f11297e7fa169e9e36fb5448c458b6063de67b1b7fb7df41fe89e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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