Notation.d.ts 864 B

1234567891011
  1. import { CHTMLmenclose } from './Wrappers/menclose.js';
  2. import * as Notation from '../common/Notation.js';
  3. export * from '../common/Notation.js';
  4. export declare type RENDERER<N, T, D> = Notation.Renderer<CHTMLmenclose<N, T, D>, N>;
  5. export declare type DEFPAIR<N, T, D> = Notation.DefPair<CHTMLmenclose<N, T, D>, N>;
  6. export declare const RenderElement: <N, T, D>(name: string, offset?: string) => RENDERER<N, T, D>;
  7. export declare const Border: <N, T, D>(side: Notation.Side) => DEFPAIR<N, T, D>;
  8. export declare const Border2: <N, T, D>(name: string, side1: Notation.Side, side2: Notation.Side) => DEFPAIR<N, T, D>;
  9. export declare const DiagonalStrike: <N, T, D>(name: string, neg: number) => DEFPAIR<N, T, D>;
  10. export declare const DiagonalArrow: <N, T, D>(name: string) => DEFPAIR<N, T, D>;
  11. export declare const Arrow: <N, T, D>(name: string) => DEFPAIR<N, T, D>;