Olá! Criei a interface conforme vídeo aula, porém ao compilar recebo o seguinte erro:
ERROR in src/app/shared/components/modal/services/modal.service.ts:6:15 - error TS6133: 'config' is declared but its value is never read.
Alguém poderia me dar uma dica de como resolver esse erro?
Codigo
import { Injectable, TemplateRef } from '@angular/core';
@Injectable()
export class ModalService {
public open(config: ModalConfig): ModalRef {
console.log('open called');
return new ModalRef;
}
}
export interface ModalConfig {
templateRef: TemplateRef<any>;
title: string;
}
export class ModalRef {
public close(): void {
console.log('close called');
}
}