photo-sphere-viewer
Version:
A JavaScript library to display Photo Sphere panoramas
17 lines (12 loc) • 295 B
TypeScript
import { AbstractComponent } from './AbstractComponent';
export type NotificationOptions = {
id?: string;
content: string;
timeout?: number;
};
/**
* @summary Notification class
*/
export class Notification extends AbstractComponent {
show(config: string | NotificationOptions);
}