1
0
Fork 0

worked on GarageApp stuff

This commit is contained in:
Techognito 2025-08-25 17:46:11 +02:00
parent 60aaf17af3
commit eb606572b0
51919 changed files with 2168177 additions and 18 deletions

38
node_modules/@mui/material/TableHead/TableHead.d.ts generated vendored Normal file
View file

@ -0,0 +1,38 @@
import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from "../styles/index.js";
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
import { TableHeadClasses } from "./tableHeadClasses.js";
export interface TableHeadOwnProps {
/**
* The content of the component, normally `TableRow`.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<TableHeadClasses>;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
export interface TableHeadTypeMap<AdditionalProps = {}, RootComponent extends React.ElementType = 'thead'> {
props: AdditionalProps & TableHeadOwnProps;
defaultComponent: RootComponent;
}
/**
*
* Demos:
*
* - [Table](https://mui.com/material-ui/react-table/)
*
* API:
*
* - [TableHead API](https://mui.com/material-ui/api/table-head/)
*/
declare const TableHead: OverridableComponent<TableHeadTypeMap>;
export type TableHeadProps<RootComponent extends React.ElementType = TableHeadTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<TableHeadTypeMap<AdditionalProps, RootComponent>, RootComponent> & {
component?: React.ElementType;
};
export default TableHead;