File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @interactivetraining/acme-client" ,
3
- "version" : " 0.0.2 " ,
3
+ "version" : " 0.0.4 " ,
4
4
"description" : " Simple scalable automatic solution for obtaining SSL certificates." ,
5
5
"keywords" : [
6
6
" acme client" ,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export interface ICloudflareResourceZone {
60
60
plan : any ;
61
61
}
62
62
63
- export class CloudflareZones {
63
+ export declare class CloudflareZones {
64
64
browse : ( pagination ?: Partial < ICloudflarePagination > ) => Promise < ICloudflareResponse < ICloudflareResourceZone [ ] > > ;
65
65
}
66
66
@@ -86,13 +86,13 @@ export interface ICloudflareDeleteResource {
86
86
id : string ;
87
87
}
88
88
89
- export class CloudflareDnsRecords {
89
+ export declare class CloudflareDnsRecords {
90
90
browse : ( zoneId : string , pagination ?: Partial < ICloudflarePagination > ) => Promise < ICloudflareResponse < ICloudflareResourceDnsRecord [ ] > > ;
91
91
del : ( zoneId : string , dnsRecordId : string ) => Promise < ICloudflareResponse < ICloudflareDeleteResource > > ;
92
92
add : ( zoneId : string , record : Partial < ICloudflareResourceDnsRecord > ) => Promise < ICloudflareResponse < ICloudflareResourceDnsRecord > > ;
93
93
}
94
94
95
- export class CloudflareApi {
95
+ export declare class CloudflareApi {
96
96
zones : CloudflareZones ;
97
97
dnsRecords : CloudflareDnsRecords ;
98
98
}
You can’t perform that action at this time.
0 commit comments