mirror of
https://github.com/bitwarden/browser
synced 2026-02-22 12:24:01 +00:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import { UserId } from "@bitwarden/user-core";
|
|
|
|
import { ClearEvent } from "./user-key-definition";
|
|
|
|
export abstract class StateEventRunnerService {
|
|
abstract handleEvent(event: ClearEvent, userId: UserId): Promise<void>;
|
|
}
|