mirror of
https://github.com/suitenumerique/meet.git
synced 2026-07-27 20:29:09 +00:00
bf6f7430e7
Mark JS imports as type-only when applicable so they are stripped at build time and ignored during chunk splitting, ensuring we take full advantage of Rollup's code-splitting optimizations.
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import type { NotificationType } from './NotificationType'
|
|
|
|
export interface NotificationPayload {
|
|
type: NotificationType
|
|
data?: {
|
|
emoji?: string
|
|
removedSources?: string[]
|
|
}
|
|
}
|