Files
standardnotes-app-web/packages/ui-services/src/Toast/ToastServiceInterface.ts
Karol Sójko 7ead0f655b feat: add sending user requests from UI (#1927)
* feat: add sending user requests from UI

* fix(web): view controller manager user client references
2022-11-03 09:39:38 +01:00

7 lines
182 B
TypeScript

import { ToastType } from '@standardnotes/toast'
export interface ToastServiceInterface {
showToast(type: ToastType, message: string): string
hideToast(toastId: string): void
}