Strip every comment from the source (parsed with the TypeScript compiler so strings, template literals, regex literals and JSX are never touched), and drop internal/working artifacts that do not belong in the public repository (design mockups, internal analysis docs, a stray backup file and an old log). No functional change: build is green, the full test suite passes.
10 lines
136 B
TypeScript
10 lines
136 B
TypeScript
import type { ElectronApi } from "../shared/preload-api";
|
|
|
|
declare global {
|
|
interface Window {
|
|
rd: ElectronApi;
|
|
}
|
|
}
|
|
|
|
export {};
|