js-draw
Version:
Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.
12 lines (11 loc) • 350 B
TypeScript
import type Editor from '../Editor';
export interface MessageDialogOptions {
title: string;
classNames?: string[];
contentClassNames?: string[];
}
declare const makeAboutDialog: (editor: Editor, options: MessageDialogOptions) => {
close: () => Promise<void>;
appendChild: (child: Node) => void;
};
export default makeAboutDialog;