Ansible
TBA
// this is an example typescript snippet to demo syntax highlighting
import { type Uri } from "uri";
type ExampleParams = {
paramOne: string | undefined;
paramTwo: number | 69;
paramThree: Uri | "https://example.com";
};
function toString(obj: any): string {
throw new Error("Function not implemented.");
}
const Example = (params: ExampleParams[]): string => {
let concat = params.paramOne + toString(params.paramTwo) + toString(params.paramThree);
return concat;
};
export default Example;