markdown-table.d.ts 608 B

123456789101112131415161718192021222324
  1. export declare class MarkdownTable {
  2. // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
  3. static fromHTMLTableTag(str: any): MarkdownTable;
  4. // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
  5. static fromDSV(str: any, delimiter: any): MarkdownTable;
  6. static fromMarkdownString(str: string): MarkdownTable;
  7. // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
  8. constructor(table: any, options: any);
  9. table: any;
  10. options: any;
  11. toString(): any;
  12. clone(): MarkdownTable;
  13. normalizeCells(): MarkdownTable;
  14. }