Browse Source

Merge pull request #17855 from abpframework/mark-deprecated

Mark deprecated classed in Angular
pull/17976/head
Mahmut Gundogdu 2 years ago
committed by GitHub
parent
commit
3367e92028
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      npm/ng-packs/packages/core/src/lib/models/dtos.ts
  2. 1
      npm/ng-packs/packages/core/src/lib/utils/file-utils.ts

3
npm/ng-packs/packages/core/src/lib/models/dtos.ts

@ -136,6 +136,7 @@ export class AuditedEntityDto<TPrimaryKey = string> extends CreationAuditedEntit
}
}
/** @deprecated the class signature will change in v8.0 */
export class AuditedEntityWithUserDto<
TUserDto,
TPrimaryKey = string,
@ -157,7 +158,7 @@ export class FullAuditedEntityDto<TPrimaryKey = string> extends AuditedEntityDto
super(initialValues);
}
}
/** @deprecated the class signature will change in v8.0 */
export class FullAuditedEntityWithUserDto<
TUserDto,
TPrimaryKey = string,

1
npm/ng-packs/packages/core/src/lib/utils/file-utils.ts

@ -1,3 +1,4 @@
/** @deprecated the method will change in v8.0 */
export function downloadBlob(blob: Blob, filename: string) {
const blobUrl = URL.createObjectURL(blob);

Loading…
Cancel
Save