Files
drawio-mcp-server/src/@types/custom.d.ts
Alejandro Lembke Barrientos 9d5dc9ae7d
Some checks failed
Main Workflow / Test and Build (20.x) (push) Successful in 3m58s
Main Workflow / Security Audit (push) Successful in 4m10s
Main Workflow / Test and Build (18.x) (push) Failing after 2m46s
Main Workflow / Build Release Artifacts (push) Has been skipped
Main Workflow / Code Quality Check (push) Failing after 1m51s
Main Workflow / Notification (push) Failing after 21s
Fixing eslint issues
2025-07-23 05:20:31 +00:00

14 lines
263 B
TypeScript

// 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';
}