Home / File/ extendables.ts — astro Source File

extendables.ts — astro Source File

Architecture documentation for extendables.ts, a typescript file in the astro codebase. 2 imports, 0 dependents.

File typescript CoreAstro 2 imports 1 classes

Entity Profile

Dependency Diagram

graph LR
  6c2b3985_cfe4_5fcf_d297_55c38e5f5192["extendables.ts"]
  fba0fdb8_7fc8_4a17_2cab_d6a89c55b288["./elements.js"]
  6c2b3985_cfe4_5fcf_d297_55c38e5f5192 --> fba0fdb8_7fc8_4a17_2cab_d6a89c55b288
  4c453c0b_17bb_ebc3_f7de_e2a632e42c1e["../types/public/integrations.js"]
  6c2b3985_cfe4_5fcf_d297_55c38e5f5192 --> 4c453c0b_17bb_ebc3_f7de_e2a632e42c1e
  style 6c2b3985_cfe4_5fcf_d297_55c38e5f5192 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

/* eslint-disable @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-empty-object-type */
import type { AstroClientDirectives } from './elements.js';
import type { BaseIntegrationHooks } from './integrations.js';

// The interfaces in this file can be extended by users
declare global {
	namespace App {
		/**
		 * Used by middlewares to store information, that can be read by the user via the global `Astro.locals`
		 */
		export interface Locals {}

		/**
		 * Optionally type the data stored in the session
		 */
		export interface SessionData {}
	}

	namespace Astro {
		export interface IntegrationHooks extends BaseIntegrationHooks {}
		export interface ClientDirectives extends AstroClientDirectives {}
		export interface CustomImageProps {}
	}
}

export {};

Domain

Classes

Dependencies

  • ../types/public/integrations.js
  • ./elements.js

Frequently Asked Questions

What does extendables.ts do?
extendables.ts is a source file in the astro codebase, written in typescript. It belongs to the CoreAstro domain.
What does extendables.ts depend on?
extendables.ts imports 2 module(s): ../types/public/integrations.js, ./elements.js.
Where is extendables.ts in the architecture?
extendables.ts is located at packages/astro/src/types/public/extendables.ts (domain: CoreAstro, directory: packages/astro/src/types/public).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free