723e05f226291fbf552141de99969b42291e00c4a91db78045bbc1378c33e0508c61f6c6b2bec3239b0c09f946c74dde93508488ca4a751dd870cd3a596a44 343 B

12345678
  1. import { ClassAttributor } from 'parchment';
  2. declare class IndentAttributor extends ClassAttributor {
  3. add(node: HTMLElement, value: string | number): boolean;
  4. canAdd(node: HTMLElement, value: string): boolean;
  5. value(node: HTMLElement): number | undefined;
  6. }
  7. declare const IndentClass: IndentAttributor;
  8. export default IndentClass;