worked on GarageApp stuff
This commit is contained in:
parent
60aaf17af3
commit
eb606572b0
51919 changed files with 2168177 additions and 18 deletions
51
node_modules/@mui/material/styles/createTransitions.d.ts
generated
vendored
Normal file
51
node_modules/@mui/material/styles/createTransitions.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
export interface Easing {
|
||||
easeInOut: string;
|
||||
easeOut: string;
|
||||
easeIn: string;
|
||||
sharp: string;
|
||||
}
|
||||
export const easing: Easing;
|
||||
export interface Duration {
|
||||
shortest: number;
|
||||
shorter: number;
|
||||
short: number;
|
||||
standard: number;
|
||||
complex: number;
|
||||
enteringScreen: number;
|
||||
leavingScreen: number;
|
||||
}
|
||||
export const duration: Duration;
|
||||
export interface TransitionsOptions {
|
||||
easing?: Partial<Easing>;
|
||||
duration?: Partial<Duration>;
|
||||
create?: (props: string | string[], options?: Partial<{
|
||||
duration: number | string;
|
||||
easing: string;
|
||||
delay: number | string;
|
||||
}>) => string;
|
||||
getAutoHeightDuration?: (height: number) => number;
|
||||
}
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @param props
|
||||
* @param options
|
||||
*/
|
||||
export function create(props: string | string[], options?: Partial<{
|
||||
duration: number | string;
|
||||
easing: string;
|
||||
delay: number | string;
|
||||
}>): string;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @param height
|
||||
*/
|
||||
export function getAutoHeightDuration(height: number): number;
|
||||
export interface Transitions {
|
||||
easing: Easing;
|
||||
duration: Duration;
|
||||
create: typeof create;
|
||||
getAutoHeightDuration: typeof getAutoHeightDuration;
|
||||
}
|
||||
export default function createTransitions(inputTransitions: TransitionsOptions): Transitions;
|
||||
Loading…
Add table
Add a link
Reference in a new issue