wa-api-v2 / src /core /storage /ISessionAuthRepository.ts
baagas0's picture
init
b62a170
raw
history blame contribute delete
199 Bytes
export abstract class ISessionAuthRepository {
abstract init(sessionName?: string): Promise<void>;
abstract clean(sessionName: string): Promise<void>;
abstract getAll(): Promise<string[]>;
}