We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a806b0 commit 195a5a4Copy full SHA for 195a5a4
src/structures/application/base.ts
@@ -72,6 +72,14 @@ export class BaseApplication {
72
this.url = `https://squarecloud.app/dashboard/app/${id}`;
73
}
74
75
+ /** @deprecated Use `Application#backups` instead */
76
+ get backup() {
77
+ console.warn(
78
+ "Application#backup is deprecated. Use Application#backups instead.",
79
+ );
80
+ return this.backups;
81
+ }
82
+
83
async fetch(): Promise<Application> {
84
return this.client.applications.fetch(this.id);
85
0 commit comments