@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
19 lines • 477 B
TypeScript
/**
* ```js
* import { getRecordedUrl } from '@amityco/ts-sdk-react-native'
* const recordedUrl = await getRecordedUrl('roomId')
* ```
*
* Gets the recorded URL for a room
*
* @param roomId The ID of the room to get recorded URL for
* @returns The recorded URL information
*
* @category Room API
* @async
*/
export declare const getRecordedUrl: (roomId: string) => Promise<{
url: string;
expiresAt?: string;
}>;
//# sourceMappingURL=getRecordedUrl.d.ts.map