Files
2026-04-21 18:04:36 +08:00

15 lines
301 B
JavaScript

// Stub: color-diff-napi is a private native module for syntax highlighting
export class ColorDiff {
constructor() {}
diff() { return [] }
}
export class ColorFile {
constructor() {}
getColors() { return [] }
}
export function getSyntaxTheme() { return null }
export const SyntaxTheme = {}