interface Commentsimport { type Comments } from "https://dotland.deno.dev/std@0.223.0/ini/mod.ts"; Methodsclear(): voidClear all comments in the INI. deleteAtLine(line: number): booleanDelete a comment at a specific line in the INI. deleteAtKey(key: string): booleanDelete a comment before a global key in the INI. deleteAtKey(section: string, key: string): booleanDelete a comment before a section key in the INI. deleteAtSection(section: string): booleanDelete a comment before a section line in the INI. getAtLine(line: number): string | undefinedGet a comment at a specific line in the INI. getAtKey(key: string): string | undefinedGet a comment before a global key in the INI. getAtKey(section: string, key: string): string | undefinedGet a comment before a section key in the INI. getAtSection(section: string): string | undefinedGet a comment before a section line in the INI. setAtLine(line: number, text: string): CommentsSet a comment at a specific line in the INI. setAtKey(key: string, text: string): CommentsSet a comment before a global key in the INI. setAtKey(section: string,key: string,text: string,): CommentsSet a comment before a section key in the INI. setAtSection(section: string, text: string): CommentsSet a comment before a section line in the INI.