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>
63 lines
No EOL
1.8 KiB
Text
63 lines
No EOL
1.8 KiB
Text
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/**
|
|
* Supported browsers.
|
|
*
|
|
* @public
|
|
*/
|
|
export var Browser;
|
|
(function (Browser) {
|
|
Browser["CHROME"] = "chrome";
|
|
Browser["CHROMEHEADLESSSHELL"] = "chrome-headless-shell";
|
|
Browser["CHROMIUM"] = "chromium";
|
|
Browser["FIREFOX"] = "firefox";
|
|
Browser["CHROMEDRIVER"] = "chromedriver";
|
|
})(Browser || (Browser = {}));
|
|
/**
|
|
* Platform names used to identify a OS platform x architecture combination in the way
|
|
* that is relevant for the browser download.
|
|
*
|
|
* @public
|
|
*/
|
|
export var BrowserPlatform;
|
|
(function (BrowserPlatform) {
|
|
BrowserPlatform["LINUX"] = "linux";
|
|
BrowserPlatform["LINUX_ARM"] = "linux_arm";
|
|
BrowserPlatform["MAC"] = "mac";
|
|
BrowserPlatform["MAC_ARM"] = "mac_arm";
|
|
BrowserPlatform["WIN32"] = "win32";
|
|
BrowserPlatform["WIN64"] = "win64";
|
|
})(BrowserPlatform || (BrowserPlatform = {}));
|
|
/**
|
|
* Enum describing a release channel for a browser.
|
|
*
|
|
* You can use this in combination with {@link resolveBuildId} to resolve
|
|
* a build ID based on a release channel.
|
|
*
|
|
* @public
|
|
*/
|
|
export var BrowserTag;
|
|
(function (BrowserTag) {
|
|
BrowserTag["CANARY"] = "canary";
|
|
BrowserTag["NIGHTLY"] = "nightly";
|
|
BrowserTag["BETA"] = "beta";
|
|
BrowserTag["DEV"] = "dev";
|
|
BrowserTag["DEVEDITION"] = "devedition";
|
|
BrowserTag["STABLE"] = "stable";
|
|
BrowserTag["ESR"] = "esr";
|
|
BrowserTag["LATEST"] = "latest";
|
|
})(BrowserTag || (BrowserTag = {}));
|
|
/**
|
|
* @public
|
|
*/
|
|
export var ChromeReleaseChannel;
|
|
(function (ChromeReleaseChannel) {
|
|
ChromeReleaseChannel["STABLE"] = "stable";
|
|
ChromeReleaseChannel["DEV"] = "dev";
|
|
ChromeReleaseChannel["CANARY"] = "canary";
|
|
ChromeReleaseChannel["BETA"] = "beta";
|
|
})(ChromeReleaseChannel || (ChromeReleaseChannel = {}));
|
|
//# sourceMappingURL=types.js.map |