11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type UserAction = {
|
|
id: number;
|
|
target: string;
|
|
action: string;
|
|
changed?: string;
|
|
}
|