@mui/x-internals
Version:
Utility functions for the MUI X packages (internal use only).
1 lines • 80 B
TypeScript
export type HasProperty<T, K extends string> = K extends keyof T ? true : false;
Utility functions for the MUI X packages (internal use only).