react-native-reanimated
Version:
More powerful alternative to Animated library for React Native.
22 lines • 873 B
TypeScript
import type { ComponentType } from 'react';
export type Maybe<T> = T | null | undefined;
/**
* Makes only mutable types (objects, arrays) readonly while leaving primitive
* types unchanged. This prevents type issues caused by making other types
* readonly, like Readonly<string> which isn't the same as string.
*/
export type NonMutable<T> = T extends object ? Readonly<T> : T;
export type AnyRecord = Record<string, any>;
export type AnyComponent = ComponentType<any>;
type Simplify<T> = {
[K in keyof T]: T[K];
} & {};
type ConvertValueToArray<T> = Simplify<(T extends any[] ? T[number] : T)[]>;
export type ConvertValuesToArrays<T> = {
[K in keyof T]-?: ConvertValueToArray<Exclude<T[K], undefined>>;
};
export type ConvertValuesToArraysWithUndefined<T> = {
[K in keyof T]-?: ConvertValueToArray<T[K]>;
};
export {};
//# sourceMappingURL=helpers.d.ts.map