docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
@@ -1,4 +1,4 @@
[[Declaration Files (.d.ts)]]
[[Declaration Files (.d.ts)|Declaration Files (.d.ts)]]
📌 Brief Summary
Declaration files (`.d.ts`) are specialized TypeScript files that contain only type information and no executable JavaScript logic. They serve as a structural blueprint, providing the compiler with the shape of existing code (often written in plain JavaScript) to enable static type checking, autocomte, and interface validation within the TypeScript ecosystem.
@@ -12,8 +12,8 @@ Declaration files (`.d.ts`) are specialized TypeScript files that contain only t
* **Compilation Behavior**: During the build process, `.d.ts` files are stripped away. They do not contribute to the size of the emitted `.js` files; their influence is strictly limited to the "Type Checking" phase of the TypeScript compiler lifecycle.
🔗 Knowledge Connections
* Related Topics: [[Ambient Declarations]], [[Module Augmentation]], [[Structural Type System]]
* Projects/Contexts: [[DefinitelyTyped]], [[TypeScript Compiler API]]
* Related Topics: [[Ambient Declarations|Ambient Declarations]], [[Module Augmentation|Module Augmentation]], [[Structural Type System|Structural Type System]]
* Projects/Contexts: [[DefinitelyTyped|DefinitelyTyped]], [[TypeScript Compiler API|TypeScript Compiler API]]
* Contradictions/Notes: While `.d.ts` files provide type safety, they do not provide runtime validation; a mismatch between the declaration file and the actual JavaScript implementation can lead to "false positives" where code passes compilation but fails at runtime.
Last updated: 2026-04-17