Initial commit: New MoreminiMore website with fresh design
This commit is contained in:
17
node_modules/astro/dist/content/instance.d.ts
generated
vendored
Normal file
17
node_modules/astro/dist/content/instance.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { FSWatcher } from 'vite';
|
||||
import { ContentLayer } from './content-layer.js';
|
||||
import type { AstroLogger } from '../core/logger/core.js';
|
||||
import type { AstroSettings } from '../types/astro.js';
|
||||
import type { MutableDataStore } from './mutable-data-store.js';
|
||||
interface ContentLayerOptions {
|
||||
store: MutableDataStore;
|
||||
settings: AstroSettings;
|
||||
logger: AstroLogger;
|
||||
watcher?: FSWatcher;
|
||||
}
|
||||
export declare const globalContentLayer: {
|
||||
init: (options: ContentLayerOptions) => ContentLayer;
|
||||
get: () => ContentLayer | null;
|
||||
dispose: () => void;
|
||||
};
|
||||
export {};
|
||||
Reference in New Issue
Block a user