first commit

This commit is contained in:
Warunee Tamkoo 2023-09-06 14:51:44 +07:00
commit eb2f504652
32490 changed files with 5731109 additions and 0 deletions

75
node_modules/quasar/wrappers/index.js generated vendored Normal file
View file

@ -0,0 +1,75 @@
// 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`
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
}
module.exports.bexBackground = function (callback) {
return callback
}
module.exports.bexContent = function (callback) {
return callback
}
module.exports.bexDom = 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
}

75
node_modules/quasar/wrappers/index.mjs generated vendored Normal file
View file

@ -0,0 +1,75 @@
// 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`
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
}
export function bexBackground (callback) {
return callback
}
export function bexContent (callback) {
return callback
}
export function bexDom (callback) {
return callback
}
/**
* Below only for @quasar/app-webpack v3
*/
export function ssrProductionExport (callback) {
return callback
}
/**
* Below only for @quasar/app-vite & @quasar/app-webpack v4+
*/
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
}