comment.d.ts 180 B

123456
  1. import { Position } from "../types";
  2. export declare function createComment(position: Position, value: string): {
  3. value: string;
  4. type: "comment";
  5. position: Position;
  6. };