@forge/api
7.2.2-experimental-04cc2b98.0.0-next.0
out/privacy/index.d.ts~
out/privacy/index.d.tsModified+2−2
Index: package/out/privacy/index.d.ts
===================================================================
--- package/out/privacy/index.d.ts
+++ package/out/privacy/index.d.ts
@@ -1,12 +1,12 @@
import { FetchMethod } from '../';
export declare const URL = "/app/report-accounts";
export declare const LIMIT = 90;
-export type Account = {
+export declare type Account = {
accountId: string;
updatedAt: string;
};
-export type AccountUpdate = {
+export declare type AccountUpdate = {
accountId: string;
status: 'updated' | 'closed';
};
export declare const createReportPersonalData: (requestAtlassian: FetchMethod) => (accounts: Account[]) => Promise<AccountUpdate[]>;