UNPKG

convex

Version:

Client for the Convex Cloud

25 lines (22 loc) 514 B
import { version } from "../version.js"; export function header(oneLineDescription: string) { return `/* eslint-disable */ /** * ${oneLineDescription} * * THIS CODE IS AUTOMATICALLY GENERATED. * * Generated by convex@${version}. * To regenerate, run \`npx convex dev\`. * @module */ `; } /** * We generate JS files as .d.ts and .js so that they are usable by both * JavaScript and TypeScript developers. */ export type GeneratedJsWithTypes = { DTS: string; JS?: string; };