/** Interface de autenticação */ export default interface IAuth { get: (key: string) => Promise; set: (key: string, data: any) => Promise; remove: (key: string) => Promise; listAll: (key?: string) => Promise; }