Initial commit

This commit is contained in:
2025-07-21 20:35:19 +00:00
commit f10bf53522
29 changed files with 22699 additions and 0 deletions

14
src/@types/custom.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
// index.d.ts
declare module "*.gql" {
const content: any;
export default content;
}
declare module 'cookie-parse' {
const content: any;
export default content;
}
declare module 'graphql-ws/use/ws' {
export * from 'graphql-ws/dist/use/ws';
}