Skip to content

Commit

Permalink
Add doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JayaShakthi97 committed Dec 2, 2024
1 parent c03c909 commit cd907dd
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@ import useGetCheckSum from "../../../../api/use-get-sha-file";
* Interface for download URLs prop of the DownloadAgentStep component.
*/
export interface AgentDownloadInfoInterface {
/**
* The download URL of the user store agent.
*/
file: string;
checkSum?: string;
/**
* The checksum file URL of the user store agent file.
*/
checkSum: string;
}

/**
Expand All @@ -57,6 +63,9 @@ interface DownloadAgentStepPropsInterface extends IdentifiableComponentInterface
}
}

/**
* User store agent available operating systems.
*/
enum OperatingSystem {
Linux = "Linux",
LinuxArm = "Linux (ARM)",
Expand Down

0 comments on commit cd907dd

Please sign in to comment.