frontend/.pnpm-store/v3/files/de/9ca75a7a29f4e13c14a169cfbb643aeb7845c713dc46f312d06e668a4f2decc655d89a45cc97b26e2d9bddbb7cbb8ea77670a8e078b2d546dd4651e745bbf0

19 lines
674 B
Plaintext

export declare function importAny(...modules: string[]): Promise<any>;
export declare function concat(...arrs: any[]): any[];
/** Paths used by preprocessors to resolve @imports */
export declare function getIncludePaths(fromFilename: string, base?: string[]): string[];
/**
* Checks if a package is installed.
*
* @export
* @param {string} dep
* @returns boolean
*/
export declare function hasDepInstalled(dep: string): Promise<boolean>;
export declare function isValidLocalPath(path: string): boolean;
export declare function findUp({ what, from }: {
what: any;
from: any;
}): string;
export declare function setProp(obj: any, keyList: any, val: any): void;