@aimee-blue/ab-service-kit
Version:
Aimee Blue Service Template
11 lines (10 loc) • 327 B
TypeScript
export declare const LOGGING_AUDIT = "LOGGING/AUDIT";
export interface ILoggingAuditAction {
type: typeof LOGGING_AUDIT;
timestamp: number;
}
export declare function loggingAudit(): {
type: string;
timestamp: number;
};
export declare const onLoggingAudit: () => import("rxjs").Observable<ILoggingAuditAction>;