16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
export type UserAction = {
|
|
id: number;
|
|
target: string;
|
|
action: UserAction.action;
|
|
changed?: string;
|
|
};
|
|
export declare namespace UserAction {
|
|
enum action {
|
|
GET = "GET",
|
|
CREATE = "CREATE",
|
|
UPDATE = "UPDATE",
|
|
DELETE = "DELETE",
|
|
IMPORT = "IMPORT"
|
|
}
|
|
}
|