initial push

This commit is contained in:
2025-05-27 21:10:45 -05:00
parent 658443ca77
commit 61e461e31a
44 changed files with 1964 additions and 3 deletions

43
src/app/app.component.ts Normal file
View File

@@ -0,0 +1,43 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { TabsComponent } from './editor/tabs/tabs.component';
import { EditorsComponent } from './editor/editors.component';
declare global {
interface Window {
electron: {
node: () => Promise<string>,
chrome: () => Promise<string>,
electron: () => Promise<string>,
},
fs: {
getLspConfigData: () => Promise<string>,
getFileContents: (arg0: any) => Promise<string>,
getPathForFile: any,
}
}
}
@Component({
selector: 'app-root',
imports: [
TabsComponent,
EditorsComponent
],
templateUrl: './app.component.html',
styleUrl: './app.component.css',
host: {
'class': 'row'
}
})
export class AppComponent {
title = 'Newton';
constructor() {}
}