5 lines
300 B
TypeScript
5 lines
300 B
TypeScript
export enum ArchiveMode {
|
|
ALWAYS = 'ALWAYS', // The session is archived automatically (as soon as there are clients publishing streams to the session)
|
|
MANUAL = 'MANUAL' // The session is not archived automatically. To archive the session, you can call the OpenVidu.StartArchive() method
|
|
}
|