You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
439 B
TypeScript

import { Config } from './core';
import { RoughCanvas } from './canvas';
import { RoughGenerator } from './generator';
import { RoughSVG } from './svg';
declare const _default: {
canvas(canvas: HTMLCanvasElement, config?: Config | undefined): RoughCanvas;
svg(svg: SVGSVGElement, config?: Config | undefined): RoughSVG;
generator(config?: Config | undefined): RoughGenerator;
newSeed(): number;
};
export default _default;