Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-06-08 16:09:10 +02:00
parent ad472646da
commit 985b197724
+6 -6
View File
@@ -35,8 +35,8 @@ export class RollbarApi {
},
): Promise<
{
count: number;
timestamp: number;
count: number;
}[]
>;
// (undocumented)
@@ -44,8 +44,8 @@ export class RollbarApi {
{
id: number;
name: string;
status: string;
accountId: number;
status: string;
}[]
>;
// (undocumented)
@@ -57,21 +57,21 @@ export class RollbarApi {
},
): Promise<
{
count: number;
timestamp: number;
count: number;
}[]
>;
// (undocumented)
getProject(projectName: string): Promise<{
id: number;
name: string;
status: string;
accountId: number;
status: string;
}>;
// (undocumented)
getProjectItems(projectName: string): Promise<{
page: number;
items: RollbarItem[];
page: number;
totalCount: number;
}>;
// (undocumented)
@@ -114,6 +114,6 @@ export interface RouterOptions {
// Warnings were encountered during analysis:
//
// src/api/RollbarApi.d.ts:21:9 - (ae-forgotten-export) The symbol "RollbarItem" needs to be exported by the entry point index.d.ts
// src/api/RollbarApi.d.ts:20:9 - (ae-forgotten-export) The symbol "RollbarItem" needs to be exported by the entry point index.d.ts
// src/api/RollbarApi.d.ts:32:13 - (ae-forgotten-export) The symbol "RollbarFrameworkId" needs to be exported by the entry point index.d.ts
```