Initial code import

This commit is contained in:
Christopher Schleiden
2022-11-08 17:00:59 -08:00
parent 7352cda0cf
commit 2e1652515e
38 changed files with 1354 additions and 1 deletions
@@ -0,0 +1,12 @@
export interface InitializationOptions {
sessionToken?: string;
repos?: RepositoryContext[];
}
export interface RepositoryContext {
id: number;
owner: string;
name: string;
workspaceUri: string;
}