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>
25 lines
No EOL
1 KiB
Text
25 lines
No EOL
1 KiB
Text
/**
|
|
* @param {LH.Gatherer.ProtocolSession} session
|
|
* @param {string} url
|
|
* @param {LH.Config.Settings['clearStorageTypes']} clearStorageTypes
|
|
* @return {Promise<LH.IcuMessage[]>}
|
|
*/
|
|
export function clearDataForOrigin(session: LH.Gatherer.ProtocolSession, url: string, clearStorageTypes: LH.Config.Settings["clearStorageTypes"]): Promise<LH.IcuMessage[]>;
|
|
/**
|
|
* Clear the network cache on disk and in memory.
|
|
* @param {LH.Gatherer.ProtocolSession} session
|
|
* @return {Promise<LH.IcuMessage[]>}
|
|
*/
|
|
export function clearBrowserCaches(session: LH.Gatherer.ProtocolSession): Promise<LH.IcuMessage[]>;
|
|
/**
|
|
* @param {LH.Gatherer.ProtocolSession} session
|
|
* @param {string} url
|
|
* @return {Promise<LH.IcuMessage | undefined>}
|
|
*/
|
|
export function getImportantStorageWarning(session: LH.Gatherer.ProtocolSession, url: string): Promise<LH.IcuMessage | undefined>;
|
|
export namespace UIStrings {
|
|
let warningData: string;
|
|
let warningCacheTimeout: string;
|
|
let warningOriginDataTimeout: string;
|
|
}
|
|
//# sourceMappingURL=storage.d.ts.map |