🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
52
node_modules/astro/dist/core/util.d.ts
generated
vendored
Normal file
52
node_modules/astro/dist/core/util.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
import type { AstroConfig, AstroSettings, RouteType } from '../@types/astro';
|
||||
import type { ModuleLoader } from './module-loader';
|
||||
/** Returns true if argument is an object of any prototype/class (but not null). */
|
||||
export declare function isObject(value: unknown): value is Record<string, any>;
|
||||
/** Cross-realm compatible URL */
|
||||
export declare function isURL(value: unknown): value is URL;
|
||||
/** Check if a file is a markdown file based on its extension */
|
||||
export declare function isMarkdownFile(fileId: string, option?: {
|
||||
suffix?: string;
|
||||
}): boolean;
|
||||
/** Wraps an object in an array. If an array is passed, ignore it. */
|
||||
export declare function arraify<T>(target: T | T[]): T[];
|
||||
export declare function padMultilineString(source: string, n?: number): string;
|
||||
/**
|
||||
* Get the correct output filename for a route, based on your config.
|
||||
* Handles both "/foo" and "foo" `name` formats.
|
||||
* Handles `/404` and `/` correctly.
|
||||
*/
|
||||
export declare function getOutputFilename(astroConfig: AstroConfig, name: string, type: RouteType): string;
|
||||
/** is a specifier an npm package? */
|
||||
export declare function parseNpmName(spec: string): {
|
||||
scope?: string;
|
||||
name: string;
|
||||
subpath?: string;
|
||||
} | undefined;
|
||||
/**
|
||||
* Convert file URL to ID for viteServer.moduleGraph.idToModuleMap.get(:viteID)
|
||||
* Format:
|
||||
* Linux/Mac: /Users/astro/code/my-project/src/pages/index.astro
|
||||
* Windows: C:/Users/astro/code/my-project/src/pages/index.astro
|
||||
*/
|
||||
export declare function viteID(filePath: URL): string;
|
||||
export declare const VALID_ID_PREFIX = "/@id/";
|
||||
export declare const NULL_BYTE_PLACEHOLDER = "__x00__";
|
||||
export declare function unwrapId(id: string): string;
|
||||
export declare function resolvePages(config: AstroConfig): URL;
|
||||
export declare function isPage(file: URL, settings: AstroSettings): boolean;
|
||||
export declare function isEndpoint(file: URL, settings: AstroSettings): boolean;
|
||||
export declare function isModeServerWithNoAdapter(settings: AstroSettings): boolean;
|
||||
export declare function relativeToSrcDir(config: AstroConfig, idOrUrl: URL | string): string;
|
||||
export declare function rootRelativePath(root: URL, idOrUrl: URL | string, shouldPrependForwardSlash?: boolean): string;
|
||||
export declare function emoji(char: string, fallback: string): string;
|
||||
/**
|
||||
* Simulate Vite's resolve and import analysis so we can import the id as an URL
|
||||
* through a script tag or a dynamic import as-is.
|
||||
*/
|
||||
export declare function resolveIdToUrl(loader: ModuleLoader, id: string, root?: URL): Promise<string>;
|
||||
export declare function resolveJsToTs(filePath: string): string;
|
||||
/**
|
||||
* Resolve the hydration paths so that it can be imported in the client
|
||||
*/
|
||||
export declare function resolvePath(specifier: string, importer: string): string;
|
||||
Loading…
Add table
Add a link
Reference in a new issue