Urara-Blog/node_modules/.pnpm-store/v3/files/d8/f42421962a2e924009bfe74be170fc542ae84df5dcc011f4865c0b8015b4d22319b1e49a415497a9c8f6c1121fa8d9c8ecd7851dcbe4485c958658e0361710
2022-08-14 01:14:53 +08:00

19 lines
762 B
Text

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: string;
from: string;
}): string | null;
export declare function setProp(obj: any, keyList: string[], value: any): void;
export declare const JAVASCRIPT_RESERVED_KEYWORD_SET: Set<string>;