79266898

Date: 2024-12-10 02:50:01
Score: 0.5
Natty:
Report link

For anyone landing here late, If you're using type script you can add it to a globa type definition

//global.d.ts
declare module '*.cypher' {
  const content: string;
  export default content;
}

then you can just do

import cypher from './mycypher.cypher'
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fridaystreet