@churchapps/helpers
Version:
Library of helper functions not specific to any one ChurchApps project or framework.
17 lines • 391 B
TypeScript
export interface ErrorLogInterface {
application?: string;
errorTime?: Date;
userId?: string;
churchId?: string;
originUrl?: string;
errorType?: string;
message?: string;
details?: string;
}
export interface ErrorAppDataInterface {
churchId: string;
userId: string;
originUrl: string;
application: string;
}
//# sourceMappingURL=Error.d.ts.map