5 lines
111 B
TypeScript
5 lines
111 B
TypeScript
import type { ActionId } from './ActionId';
|
|
export type ClearActionsParams = {
|
|
except: Array<ActionId>;
|
|
};
|