This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @template TModel of Model */ | |
abstract class AbstractQueryBuilder | |
{ | |
/** | |
* The filters to be applied to the query. | |
* @var array<QueryFilterInterface<TModel>> | |
*/ | |
protected array $filters = []; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "UA-USM", | |
"version": "1.0.0", | |
"main": "index.html", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "jimmywilson111", | |
"license": "ISC", | |
"devDependencies": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let project_folder = "dist"; | |
source_folder = "src"; | |
let fs = require('fs'); | |
let path = { | |
build: { | |
html: project_folder + "/", | |
css: project_folder + "/css/", | |
js: project_folder + "/js/", | |
img: project_folder + "/img/", | |
webp: project_folder + "/img/", |