UNPKG

threepipe

Version:

A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.

8 lines 381 B
export interface IDialogWrapper { alert: (message?: string) => Promise<void>; prompt: (message?: string, _default?: string, cancel?: boolean) => Promise<string | null>; confirm: (message?: string) => Promise<boolean>; confirmSync: (message?: string) => boolean; } export declare const windowDialogWrapper: IDialogWrapper; //# sourceMappingURL=DialogWrapper.d.ts.map