mss-doc-viewer
Version:
A simple typehead library developed by MSS development team to be used for document viewer
16 lines (15 loc) • 479 B
TypeScript
export declare class Document {
url: string;
onLoad?: (payload: any) => void;
authorization?: string;
queryParams?: string | '';
viewerUrl?: string | '';
disableContent?: 'none' | 'all' | 'popout' | 'popout-hide';
googleCheckContentLoaded?: boolean;
overrideLocalhost?: string;
viewer?: string | 'google' | 'office';
googleCheckInterval?: number;
googleMaxChecks?: number;
download?: boolean;
print?: boolean;
}