10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
|
|
import { Injectable } from '@angular/core';
|
||
|
|
|
||
|
|
@Injectable()
|
||
|
|
export class DisplayImageService {
|
||
|
|
|
||
|
|
constructor() { }
|
||
|
|
activate: (message?: string, title?: string) => Promise<boolean>;
|
||
|
|
|
||
|
|
}
|