/** * Acknowledges a config.update, listing the keys that were applied. */ export interface RealtimeConfigUpdated { event: "config.updated"; /** Config keys that were applied */ applied: string[]; }