--- Defines the return type for this util.
--- The type is automatically available when you require the script.
export type AdditionResult = {
exampleValue: number,
someString: string
}
--- Example helper function.
local function add(a: number, b: number): AdditionResult
return {
exampleValue = a + b,
someString = "4 out of 5 dentists recommend Rive"
}
end
return {
add = add,
}