color-diff-napi.ts 313 B

12345678910111213141516171819
  1. export type SyntaxTheme = {
  2. name: string;
  3. };
  4. export class ColorDiff {
  5. format(input: string): string {
  6. return input;
  7. }
  8. }
  9. export class ColorFile {
  10. format(input: string): string {
  11. return input;
  12. }
  13. }
  14. export function getSyntaxTheme(themeName: string): SyntaxTheme {
  15. return { name: themeName };
  16. }