Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

View file

@ -0,0 +1,88 @@
// Functions in this file are no-op,
// they just take a callback function and return it
// They're used to apply typings to the callback
// parameters and return value when using Quasar with TypeScript
// We need these in `ui` folder to make `quasar/wrapper` import work,
// but they are useful only for Quasar CLI projects
// They are typed via module augmentation by `@quasar/app-webpack` / `@quasar/app-vite`
/*******************************************************
* Warning!
* All these are deprecated starting with
* @quasar/app-vite v2
* @quasar/app-webpack v4
*
* Use the new wrappers from #q-app/wrappers
*******************************************************/
module.exports.boot = function (callback) {
return callback
}
module.exports.ssrMiddleware = function (callback) {
return callback
}
module.exports.configure = function (callback) {
return callback
}
module.exports.preFetch = function (callback) {
return callback
}
module.exports.route = function (callback) {
return callback
}
module.exports.store = function (callback) {
return callback
}
/**
* Below only for @quasar/app-webpack v3
*/
module.exports.ssrProductionExport = function (callback) {
return callback
}
/**
* Below only for @quasar/app-vite & @quasar/app-webpack v4+
*/
module.exports.ssrCreate = function (callback) {
return callback
}
module.exports.ssrListen = function (callback) {
return callback
}
module.exports.ssrClose = function (callback) {
return callback
}
module.exports.ssrServeStaticContent = function (callback) {
return callback
}
module.exports.ssrRenderPreloadTag = function (callback) {
return callback
}
/**
* Below only for legacy @quasar/app-vite v1 & @quasar/app-webpack v3
*/
module.exports.bexBackground = function (callback) {
return callback
}
module.exports.bexContent = function (callback) {
return callback
}
module.exports.bexDom = function (callback) {
return callback
}

88
Frontend-Learner/node_modules/quasar/wrappers/index.js generated vendored Normal file
View file

@ -0,0 +1,88 @@
// Functions in this file are no-op,
// they just take a callback function and return it
// They're used to apply typings to the callback
// parameters and return value when using Quasar with TypeScript
// We need these in `ui` folder to make `quasar/wrapper` import work,
// but they are useful only for Quasar CLI projects
// They are typed via module augmentation by `@quasar/app-webpack` / `@quasar/app-vite`
/*******************************************************
* Warning!
* All these are deprecated starting with
* @quasar/app-vite v2
* @quasar/app-webpack v4
*
* Use the new wrappers from #q-app/wrappers
*******************************************************/
export function boot (callback) {
return callback
}
export function configure (callback) {
return callback
}
export function preFetch (callback) {
return callback
}
export function route (callback) {
return callback
}
export function store (callback) {
return callback
}
export function ssrMiddleware (callback) {
return callback
}
/**
* Below only for @quasar/app-webpack v3
*/
export function ssrProductionExport (callback) {
return callback
}
/**
* Below only for @quasar/app-vite v1
*/
export function ssrCreate (callback) {
return callback
}
export function ssrListen (callback) {
return callback
}
export function ssrClose (callback) {
return callback
}
export function ssrServeStaticContent (callback) {
return callback
}
export function ssrRenderPreloadTag (callback) {
return callback
}
/**
* Below only for legacy @quasar/app-vite v1 & @quasar/app-webpack v3
*/
export function bexBackground (callback) {
return callback
}
export function bexContent (callback) {
return callback
}
export function bexDom (callback) {
return callback
}