Files
tsclass/ts/network/dnschallenge.ts

5 lines
76 B
TypeScript
Raw Normal View History

2020-02-09 16:38:22 +00:00
export interface IDnsChallenge {
hostName: string;
challenge: string;
2020-02-20 22:13:57 +00:00
}