feat: initialize FewLineSDK project with TypeScript setup
- Add package.json with dependencies and scripts for building and linting - Create initial FewLineSDK class in src/index.ts - Set up TypeScript configuration in tsconfig.json
This commit is contained in:
7
src/index.ts
Normal file
7
src/index.ts
Normal file
@ -0,0 +1,7 @@
|
||||
export class FewLineSDK {
|
||||
constructor(private url: string, private token: string) {}
|
||||
|
||||
public getUrl(): string {
|
||||
return this.url;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user