import { StoreGroupLike } from "../UILayer/StoreGroupLike"; import { StoreLike } from "../StoreLike"; import { UseCaseLike } from "../UseCaseLike"; import { Transaction } from "../DispatcherPayloadMeta"; export declare type DebugId = string; export declare type MarkType = "StoreGroup#read" | "StoreGroup#write" | "Store#getState" | "Store#receivePayload" | "UserCase#execute" | "UserCase#complete" | "Transaction"; export declare abstract class AlminPerfMarkerAbstract { abstract beginProfile(): void; abstract get isProfiling(): boolean; abstract endProfile(): void; abstract shouldMark(debugId: DebugId): boolean; abstract beforeStoreGroupReadPhase(debugId: DebugId, storeGroup: StoreGroupLike): void; abstract afterStoreGroupReadPhase(debugId: DebugId, storeGroup: StoreGroupLike): void; abstract beforeStoreGroupWritePhase(debugId: DebugId, storeGroup: StoreGroupLike): void; abstract afterStoreGroupWritePhase(debugId: DebugId, storeGroup: StoreGroupLike): void; abstract beforeStoreGetState(debugId: DebugId, store: StoreLike): void; abstract afterStoreGetState(debugId: DebugId, store: StoreLike): void; abstract beforeStoreReceivePayload(debugId: DebugId, store: StoreLike): void; abstract afterStoreReceivePayload(debugId: DebugId, store: StoreLike): void; abstract willUseCaseExecute(debugId: DebugId, useCase: UseCaseLike): void; abstract didUseCaseExecute(debugId: DebugId, useCase: UseCaseLike): void; abstract completeUseCaseExecute(debugId: DebugId, useCase: UseCaseLike): void; abstract beginTransaction(debugId: DebugId, transaction: Transaction): void; abstract endTransaction(debugId: DebugId, transaction: Transaction): void; }