7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
export declare type UserAction = {
|
|
id: number;
|
|
target: string;
|
|
action: string;
|
|
changed?: string;
|
|
};
|