feat(core): add doc grant feature to share menu (#9672)

This commit is contained in:
JimmFly
2025-02-07 13:05:58 +00:00
parent 459972fe6c
commit 5ae5fd88f1
57 changed files with 3188 additions and 697 deletions

View File

@@ -8,7 +8,7 @@ export interface UserFriendlyErrorResponse {
type: string;
name: ErrorNames;
message: string;
args?: any;
data?: any;
stacktrace?: string;
}
@@ -21,7 +21,7 @@ export class UserFriendlyError
readonly type = this.response.type;
override readonly name = this.response.name;
override readonly message = this.response.message;
readonly args = this.response.args;
readonly data = this.response.data;
readonly stacktrace = this.response.stacktrace;
static fromAnyError(response: any) {