util.d.ts 464 B

123456789
  1. import { Cell, Node } from '../model';
  2. import { Markup } from '../view';
  3. import { Base } from './base';
  4. export declare function getMarkup(tagName: string, selector?: string): Markup;
  5. export declare function getImageUrlHook(attrName?: string): Cell.PropHook<Cell.Metadata, Cell<Cell.Properties>>;
  6. export declare function createShape(shape: string, config: Node.Config, options?: {
  7. selector?: string;
  8. parent?: Node.Definition | typeof Base;
  9. }): typeof Base;