15 lines
301 B
JavaScript
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 = {}
|