* feat: add sending user requests from UI * fix(web): view controller manager user client references
7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { ToastType } from '@standardnotes/toast'
|
|
|
|
export interface ToastServiceInterface {
|
|
showToast(type: ToastType, message: string): string
|
|
hideToast(toastId: string): void
|
|
}
|