new lib version [CI SKIP]
This commit is contained in:
21
dist/models/UserAction.d.ts
vendored
21
dist/models/UserAction.d.ts
vendored
@@ -1,6 +1,15 @@
|
||||
export declare type UserAction = {
|
||||
id: number;
|
||||
target: string;
|
||||
action: string;
|
||||
changed?: string;
|
||||
};
|
||||
export declare 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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user