
* Fixes error types * Type fixes * Refactors video meeting handling * More type fixes * Type fixes * More fixes * Makes language non optional * Adds missing translations * Apply suggestions from code review Co-authored-by: Alex Johansson <alexander@n1s.se> * Feedback Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: Alex Johansson <alexander@n1s.se>
3 lines
96 B
TypeScript
3 lines
96 B
TypeScript
export type Ensure<T, K extends keyof T> = Omit<T, K> & {
|
|
[EK in K]-?: NonNullable<T[EK]>;
|
|
};
|