ng-yunzai-mobile
Version:
1. 适配yunzai_uni_app_x
18 lines (17 loc) • 714 B
TypeScript
import { AfterViewInit, OnInit } from '@angular/core';
import { DomSanitizer, SafeResourceUrl } from "@angular/platform-browser";
import { MatDialogRef } from "@angular/material/dialog";
import { BaseClient } from "../../client/base.client";
export declare class YzFileShowComponent implements OnInit, AfterViewInit {
private sanitizer;
dialogRef: MatDialogRef<YzFileShowComponent>;
data: any;
private client;
fileId: string;
iframeSrc: SafeResourceUrl;
loading: boolean;
constructor(sanitizer: DomSanitizer, dialogRef: MatDialogRef<YzFileShowComponent>, data: any, client: BaseClient);
ngOnInit(): void;
closeIframe(): void;
ngAfterViewInit(): void;
}