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
284 B
Text
14 lines
284 B
Text
/**
|
|
* **PostCSS Plugin Warning**
|
|
*
|
|
* Loader wrapper for postcss plugin warnings (`root.messages`)
|
|
*
|
|
* @class Warning
|
|
* @extends Error
|
|
*
|
|
* @param {Object} warning PostCSS Warning
|
|
*/
|
|
export default class Warning extends Error {
|
|
stack: any;
|
|
constructor(warning: any);
|
|
}
|