Frontend-Common/global.d.ts

4 lines
86 B
TypeScript

type Nullable<T> = T | null | undefined
type UnknownRecord = Record<string, unknown>